diff --git a/components/main/einausgaenge/DigitalInputs.tsx b/components/main/einausgaenge/DigitalInputs.tsx
index f094e58..030528b 100644
--- a/components/main/einausgaenge/DigitalInputs.tsx
+++ b/components/main/einausgaenge/DigitalInputs.tsx
@@ -4,7 +4,6 @@ import React from "react";
import { Icon } from "@iconify/react";
import { useSelector } from "react-redux";
import { RootState } from "../../../redux/store";
-import CogIcon from "../../../components/icons/CogIcon";
type Props = {
openInputModal: (input: any) => void;
@@ -89,8 +88,9 @@ export default function DigitalInputs({ openInputModal, inputRange }: Props) {
{input.label}
- openInputModal(input)}
/>
|
diff --git a/components/navigation/Navigation.tsx b/components/navigation/Navigation.tsx
index 54db865..1466799 100644
--- a/components/navigation/Navigation.tsx
+++ b/components/navigation/Navigation.tsx
@@ -25,7 +25,7 @@ const Navigation: React.FC = ({ className }) => {
{ name: "Übersicht", path: "/dashboard" },
{ name: "Kabelüberwachung ", path: "/kabelueberwachung" },
{ name: "Meldungseingänge ", path: "/digitalInputs" }, //vorher Digitale Ein -und Ausgänge
- { name: "Schaltausgänge ", path: "/digitalOutputs", disabled: true }, //vorher Digitale Ein -und Ausgänge
+ { name: "Schaltausgänge ", path: "/digitalOutputs", disabled: false }, //vorher Digitale Ein -und Ausgänge
{ name: "Messwertüberwachung ", path: "/analogeEingaenge" }, //vorher Analoge Eingänge
{ name: "Berichte ", path: "/meldungen" },
{ name: "System ", path: "/system" },
diff --git a/config/webVersion.ts b/config/webVersion.ts
index 27080bc..1115694 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.310";
+const webVersion = "1.6.311";
export default webVersion;