From b0c11160fca4ddf4ce7de596794ee765f1df3fa1 Mon Sep 17 00:00:00 2001 From: ISA Date: Tue, 22 Apr 2025 14:19:03 +0200 Subject: [PATCH] =?UTF-8?q?Kabel=C3=BCberwachung:=20Anstatt=20Slot=20?= =?UTF-8?q?=C3=BCberall=20Steckplatz=20als=20Text=20verwenden?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Charts/LoopMeasurementChart/LoopChartActionBar.tsx | 4 ++-- .../kue705FO/Charts/TDRChart/TDRChartActionBar.tsx | 4 ++-- .../main/kabelueberwachung/kue705FO/modals/KueModal.tsx | 2 +- config/webVersion.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx index 26f5e56..a01dc11 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx @@ -130,7 +130,7 @@ const LoopChartActionBar: React.FC = () => { const type = selectedSlotType === "schleifenwiderstand" ? 4 : 3; if (slotNumber === null) { - alert("⚠️ Bitte zuerst einen Slot auswählen!"); + alert("⚠️ Bitte zuerst einen Steckplatz auswählen!"); return; } @@ -189,7 +189,7 @@ const LoopChartActionBar: React.FC = () => {
diff --git a/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx b/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx index 0808fb2..aa8173b 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx @@ -107,8 +107,8 @@ const TDRChartActionBar: React.FC = () => { {/* 🧩 Slot-Anzeige (1-basiert für Benutzer) */}
{selectedSlot !== null - ? `Slot ${selectedSlot + 1}` - : "Kein Slot gewählt"} + ? `Steckplatz ${selectedSlot + 1}` + : "Kein Steckplatz gewählt"}
{/* ✅ Referenz setzen */} diff --git a/components/main/kabelueberwachung/kue705FO/modals/KueModal.tsx b/components/main/kabelueberwachung/kue705FO/modals/KueModal.tsx index 5e35584..5d16ea8 100644 --- a/components/main/kabelueberwachung/kue705FO/modals/KueModal.tsx +++ b/components/main/kabelueberwachung/kue705FO/modals/KueModal.tsx @@ -47,7 +47,7 @@ export default function KueModal({ showModal, onClose, slot }: KueModalProps) { }} >
-

Einstellungen – Slot {slot + 1}

+

Steckplatz {slot + 1}

diff --git a/config/webVersion.ts b/config/webVersion.ts index 44bab8d..5a3ced6 100644 --- a/config/webVersion.ts +++ b/config/webVersion.ts @@ -6,5 +6,5 @@ 2: Patch oder Hotfix (Bugfixes oder kleine Änderungen). */ -const webVersion = "1.6.250"; +const webVersion = "1.6.251"; export default webVersion;