fix: KÜ slotnummer in der Messkurven Modal

This commit is contained in:
ISA
2025-07-28 08:29:48 +02:00
parent f79c225b71
commit 7a9fbc97dd
23 changed files with 6399 additions and 9193 deletions

View File

@@ -14,7 +14,7 @@ const handleOpenChartModal = (
setShowChartModal: Dispatch<SetStateAction<boolean>>,
dispatch: ReturnType<typeof useDispatch>,
slotIndex: number,
activeButton: "Schleife" | "TDR"
activeButton: "Schleife" | "TDR" | "ISO"
) => {
setShowChartModal(true);
dispatch(setChartOpen(true));
@@ -26,6 +26,8 @@ const handleOpenChartModal = (
if (activeButton === "TDR") {
dispatch(setActiveMode("TDR"));
} else if (activeButton === "ISO") {
dispatch(setActiveMode("ISO"));
} else {
dispatch(setActiveMode("Schleife"));
}