fix: nur 8 analoge Eingänge anzeigen durch api handler

This commit is contained in:
ISA
2025-06-19 13:36:17 +02:00
parent 3a829f2298
commit b804fb88c1
8 changed files with 17 additions and 10 deletions

View File

@@ -24,7 +24,7 @@ export default function AnalogInputsTable({
}, [dispatch]);
const analogInputs = useSelector(
(state: RootState) => state.analogeInputsSlice
(state: RootState) => state.analogInputs ?? []
);
const handleSelect = (id: number) => {