diff --git a/apiMockData/SERVICE/kabelueberwachungMockData.js b/apiMockData/SERVICE/kabelueberwachungMockData.js
index 95f59f8..b4f09e3 100644
--- a/apiMockData/SERVICE/kabelueberwachungMockData.js
+++ b/apiMockData/SERVICE/kabelueberwachungMockData.js
@@ -135,7 +135,7 @@ var win_kueID = [
//-------------TDR---------------------------------------------------
var win_tdrActive = [
- 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
];
//----------------------------------------------------
var win_tdrAtten = [
diff --git a/components/main/kabelueberwachung/kue705FO/modals/KueEinstellung.tsx b/components/main/kabelueberwachung/kue705FO/modals/KueEinstellung.tsx
index 9a405a9..9ba2fe0 100644
--- a/components/main/kabelueberwachung/kue705FO/modals/KueEinstellung.tsx
+++ b/components/main/kabelueberwachung/kue705FO/modals/KueEinstellung.tsx
@@ -133,123 +133,108 @@ export default function KueEinstellung({
};
return (
-
-
-
+
+ {/* Kabelbezeichnung */}
+
+
handleChange("name", e.target.value)}
/>
-
-
-
Isolationsmessung
-
+ {/* Speicherintervall */}
+
+
+
-
-
-
Schleifenmessung
-
-
-
-
-
+ {/* Isolationsmessung */}
+
+
Isolationsmessung
+
+
+
+ handleChange("limit1", e.target.value)}
+ />
+ MOhm
+
+
+
+
+
+ handleChange("delay1", e.target.value)}
+ />
+ Sekunden
+
+
+
+ {/* Schleifenmessung */}
+
+
Schleifenmessung
+
+
+
+ handleChange("limit2Low", e.target.value)}
+ />
+ kOhm
+
+
+
+
+
+ handleChange("loopInterval", e.target.value)}
+ />
+ Stunden
+
-
{isAdminLoggedIn && (
)}
+ Display einschalten
+ {" "}
diff --git a/components/main/kabelueberwachung/kue705FO/modals/SettingsModalWrapper.tsx b/components/main/kabelueberwachung/kue705FO/modals/SettingsModalWrapper.tsx
index 7c6a96e..27e1774 100644
--- a/components/main/kabelueberwachung/kue705FO/modals/SettingsModalWrapper.tsx
+++ b/components/main/kabelueberwachung/kue705FO/modals/SettingsModalWrapper.tsx
@@ -58,16 +58,18 @@ export default function KueModal({ showModal, onClose, slot }: KueModalProps) {
}}
>
-
Steckplatz {slot + 1}
+
+ Einstellungen Steckplatz {slot + 1}
+
-
+
{[
- { label: "KUE Einstellung", key: "kue" },
- { label: "TDR Einstellung", key: "tdr" },
+ { label: "Allgemein", key: "kue" },
+ { label: "TDR ", key: "tdr" },
{ label: "Knotenpunkte", key: "knoten" },
].map(({ label, key }) => (
-
-
-
-
+
+
TDR Einstellungen
+
+
+
+
{
const updated = { ...tdrData, daempfung: e.target.value };
setTdrData(updated);
updateCache(updated);
}}
- className="border px-2 py-1 rounded w-full pr-10"
/>
-
- dB
-
+ dB
-
-
-
+
+
+
{
const updated = { ...tdrData, geschwindigkeit: e.target.value };
setTdrData(updated);
updateCache(updated);
}}
- className="border px-2 py-1 rounded w-full pr-14"
/>
-
- m/µs
-
+ m/µs
-
-
+
+
{
const updated = { ...tdrData, trigger: e.target.value };
setTdrData(updated);
updateCache(updated);
}}
- className="border px-2 py-1 rounded w-full"
/>
@@ -246,9 +242,9 @@ export default function TdrEinstellung({ slot, onClose }: Props) {