fix: Einstellungs-Icon bei digitalen Eingängen an Ausgänge angepasst

- Großes CogIcon durch kleines graues mdi:settings ersetzt
- Einheitliches UI für digitale Ein- und Ausgänge
- Bessere visuelle Konsistenz
This commit is contained in:
ISA
2025-04-29 13:39:31 +02:00
parent f14d3789b7
commit 0e0674b8a5
3 changed files with 5 additions and 5 deletions

View File

@@ -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}
</td>
<td className="px-1 py-1 laptop:px-0.5 laptop:py-0.5">
<CogIcon
className="2xl:w-8 2xl:h-8 xl:w-6 xl:h-6 laptop:w-4 laptop:h-4 cursor-pointer"
<Icon
icon="mdi:settings"
className="text-gray-400 text-base cursor-pointer"
onClick={() => openInputModal(input)}
/>
</td>

View File

@@ -25,7 +25,7 @@ const Navigation: React.FC<NavigationProps> = ({ 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" },

View File

@@ -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;