From 6a24c18cc93fc45082e72dd8b5bbf7cfb198091f Mon Sep 17 00:00:00 2001 From: ISA Date: Wed, 7 May 2025 10:04:43 +0200 Subject: [PATCH] fix: Bei Aufruf Messkurve: Standard Isolationswiderstandskurve --- config/webVersion.ts | 2 +- redux/slices/kabelueberwachungChartSlice.ts | 4 ++-- redux/slices/loopChartTypeSlice.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/webVersion.ts b/config/webVersion.ts index c89a260..2786d73 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.380"; +const webVersion = "1.6.381"; export default webVersion; diff --git a/redux/slices/kabelueberwachungChartSlice.ts b/redux/slices/kabelueberwachungChartSlice.ts index 38727d3..c58efef 100644 --- a/redux/slices/kabelueberwachungChartSlice.ts +++ b/redux/slices/kabelueberwachungChartSlice.ts @@ -35,12 +35,12 @@ const initialState: KabelueberwachungChartState = { vonDatum: thirtyDaysAgo.toISOString().split("T")[0], // 30 Tage zurück bisDatum: today.toISOString().split("T")[0], // Heute selectedMode: "DIA0", - selectedSlotType: "schleifenwiderstand", + selectedSlotType: "isolationswiderstand", isChartOpen: false, slotNumber: null, tdrChartData: [], isFullScreen: false, - unit: "kOhm", + unit: "MOhm", }; // Erstellung des Slices diff --git a/redux/slices/loopChartTypeSlice.ts b/redux/slices/loopChartTypeSlice.ts index 5a3df64..a3833bd 100644 --- a/redux/slices/loopChartTypeSlice.ts +++ b/redux/slices/loopChartTypeSlice.ts @@ -6,7 +6,7 @@ interface LoopChartTypeState { } const initialState: LoopChartTypeState = { - chartTitle: "Schleifenmessung", // Standardwert + chartTitle: "Isolationsmessung", // Standardwert }; const loopChartTypeSlice = createSlice({