diff --git a/.env.development b/.env.development
index 127e8de..aa0975f 100644
--- a/.env.development
+++ b/.env.development
@@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false
NEXT_PUBLIC_EXPORT_STATIC=false
NEXT_PUBLIC_USE_CGI=false
# App-Versionsnummer
-NEXT_PUBLIC_APP_VERSION=1.6.666
+NEXT_PUBLIC_APP_VERSION=1.6.667
NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter)
diff --git a/.env.production b/.env.production
index 88153e6..ec51c37 100644
--- a/.env.production
+++ b/.env.production
@@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL
NEXT_PUBLIC_EXPORT_STATIC=true
NEXT_PUBLIC_USE_CGI=true
# App-Versionsnummer
-NEXT_PUBLIC_APP_VERSION=1.6.666
+NEXT_PUBLIC_APP_VERSION=1.6.667
NEXT_PUBLIC_CPL_MODE=production
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8cc1b5a..e23aa4b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## [1.6.667] – 2025-07-31
+
+- feat: TDR --> Messkurven TDR anzeigen und dort Schalter Messung aktivieren
+
+---
## [1.6.666] – 2025-07-31
- feat: KVZ JSON Daten für mock auf CPL hochgeladen und getestet
diff --git a/components/main/kabelueberwachung/kue705FO/Charts/IsoMeasurementChart/IsoChartActionBar.tsx b/components/main/kabelueberwachung/kue705FO/Charts/IsoMeasurementChart/IsoChartActionBar.tsx
index 5a3be62..def321a 100644
--- a/components/main/kabelueberwachung/kue705FO/Charts/IsoMeasurementChart/IsoChartActionBar.tsx
+++ b/components/main/kabelueberwachung/kue705FO/Charts/IsoMeasurementChart/IsoChartActionBar.tsx
@@ -9,9 +9,9 @@ import {
setSelectedMode,
setChartOpen,
setLoading,
+ setChartTitle,
} from "@/redux/slices/kabelueberwachungChartSlice";
import { setBrushRange } from "@/redux/slices/brushSlice";
-import { setChartTitle } from "@/redux/slices/isoChartTypeSlice";
import { Listbox } from "@headlessui/react";
//-----------------------------------------------------------------------------------useIsoChartLoader
@@ -92,8 +92,14 @@ export const useIsoChartLoader = () => {
const IsoChartActionBar: React.FC = () => {
const dispatch = useDispatch();
- const { vonDatum, bisDatum, selectedMode, slotNumber, isLoading } =
- useSelector((state: RootState) => state.kabelueberwachungChartSlice);
+ const {
+ vonDatum,
+ bisDatum,
+ selectedMode,
+ slotNumber,
+ isLoading,
+ chartTitle,
+ } = useSelector((state: RootState) => state.kabelueberwachungChartSlice);
const formatDate = (dateString: string) => {
const [year, month, day] = dateString.split("-");
@@ -237,13 +243,47 @@ const IsoChartActionBar: React.FC = () => {
- {/* Platzhalter für "ISO starten" Button, nimmt weiterhin Platz ein, aber ist unsichtbar */}
- dispatch(setChartTitle(value))}
>
- ISO starten
-
+
+
+ {chartTitle}
+
+
+
+ {["Messkurve", "Meldungen"].map((option) => (
+
+ `px-4 py-1 cursor-pointer ${
+ selected
+ ? "bg-littwin-blue text-white"
+ : active
+ ? "bg-gray-200"
+ : ""
+ }`
+ }
+ >
+ {option}
+
+ ))}
+
+
+