diff --git a/components/main/einausgaenge/DigitalInputs.tsx b/components/main/einausgaenge/DigitalInputs.tsx index 1a29445..6a1f96e 100644 --- a/components/main/einausgaenge/DigitalInputs.tsx +++ b/components/main/einausgaenge/DigitalInputs.tsx @@ -21,79 +21,68 @@ export default function DigitalInputs({ openInputModal, inputRange }: Props) { const inputs = digitalInputs.slice(inputRange.start, inputRange.end); return ( -
| - Eingang - | -- Zustand - | -- Bezeichnung - | -- Aktion - | +Eingang | +Zustand | +Bezeichnung | +Aktion | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| + |
|
- + |
{input.eingangOffline ? (
-
+
✖
-
+
) : input.status ? (
Eingang inaktiv
-
+
●
-
+
) : (
Eingang Aus
-
+
●
-
+
)}
Eingang Ein
|
-
- - {input.label} - | -+ | {input.label} | +
|
diff --git a/components/main/einausgaenge/DigitalOutputs.tsx b/components/main/einausgaenge/DigitalOutputs.tsx
index 3063368..c224b54 100644
--- a/components/main/einausgaenge/DigitalOutputs.tsx
+++ b/components/main/einausgaenge/DigitalOutputs.tsx
@@ -1,4 +1,5 @@
-"use client"; // /components/main/einausgaenge/DigitalOutputs.tsx
+"use client";
+// /components/main/einausgaenge/DigitalOutputs.tsx
import React from "react";
import { useSelector } from "react-redux";
import { RootState } from "../../../redux/store";
@@ -14,11 +15,14 @@ export default function DigitalOutputs({ openOutputModal }) {
return (
| Ausgang | @@ -33,15 +37,15 @@ export default function DigitalOutputs({ openOutputModal }) {
|
{output.label} |
|
diff --git a/config/webVersion.ts b/config/webVersion.ts
index 28cf7c7..a1e1752 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.312";
+const webVersion = "1.6.313";
export default webVersion;
|---|