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

@@ -4,7 +4,7 @@ import { goLoop } from "@/utils/goLoop";
import { goTDR } from "@/utils/goTDR";
const handleRefreshClick = (
activeButton: "Schleife" | "TDR",
activeButton: "Schleife" | "TDR" | "ISO",
slotIndex: number,
setLoading: Dispatch<SetStateAction<boolean>>
) => {
@@ -13,6 +13,7 @@ const handleRefreshClick = (
} else if (activeButton === "TDR") {
goTDR(slotIndex, setLoading);
}
// ISO has no refresh functionality
};
export default handleRefreshClick;