diff --git a/components/main/einausgaenge/DigitalInputs.tsx b/components/main/einausgaenge/DigitalInputs.tsx index 265214c..de59279 100644 --- a/components/main/einausgaenge/DigitalInputs.tsx +++ b/components/main/einausgaenge/DigitalInputs.tsx @@ -20,58 +20,77 @@ export default function DigitalInputs({ openInputModal, inputRange }: Props) { return (
-

- +

+ Meldungseingänge {inputRange.start + 1} – {inputRange.end}

- +
- - - - + + + + {inputs.map((input) => ( - - - - + diff --git a/config/webVersion.ts b/config/webVersion.ts index e4179ec..402a651 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.286"; +const webVersion = "1.6.287"; export default webVersion;
EingangZustandBezeichnungAktion + Eingang + + Zustand + + Bezeichnung + + Aktion +
+ {input.id} + {input.eingangOffline ? (
- -
+ + ✖ + +
Eingang inaktiv
) : input.status ? (
- -
+ + ● + +
Eingang Aus
) : (
- -
+ + ● + +
Eingang Ein
)}
{input.label} + + {input.label} + openInputModal(input)} />