fix: Bei Aufruf Messkurve: Standard Isolationswiderstandskurve

This commit is contained in:
ISA
2025-05-07 10:04:43 +02:00
parent 0a4fd3e657
commit 6a24c18cc9
3 changed files with 4 additions and 4 deletions

View File

@@ -6,5 +6,5 @@
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen). 2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
*/ */
const webVersion = "1.6.380"; const webVersion = "1.6.381";
export default webVersion; export default webVersion;

View File

@@ -35,12 +35,12 @@ const initialState: KabelueberwachungChartState = {
vonDatum: thirtyDaysAgo.toISOString().split("T")[0], // 30 Tage zurück vonDatum: thirtyDaysAgo.toISOString().split("T")[0], // 30 Tage zurück
bisDatum: today.toISOString().split("T")[0], // Heute bisDatum: today.toISOString().split("T")[0], // Heute
selectedMode: "DIA0", selectedMode: "DIA0",
selectedSlotType: "schleifenwiderstand", selectedSlotType: "isolationswiderstand",
isChartOpen: false, isChartOpen: false,
slotNumber: null, slotNumber: null,
tdrChartData: [], tdrChartData: [],
isFullScreen: false, isFullScreen: false,
unit: "kOhm", unit: "MOhm",
}; };
// Erstellung des Slices // Erstellung des Slices

View File

@@ -6,7 +6,7 @@ interface LoopChartTypeState {
} }
const initialState: LoopChartTypeState = { const initialState: LoopChartTypeState = {
chartTitle: "Schleifenmessung", // Standardwert chartTitle: "Isolationsmessung", // Standardwert
}; };
const loopChartTypeSlice = createSlice({ const loopChartTypeSlice = createSlice({