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({