Chart Linie Farbe geändert in Messwertüberwachung
This commit is contained in:
@@ -67,8 +67,8 @@ export default function AnalogInputsChart({
|
|||||||
y: point.m,
|
y: point.m,
|
||||||
})),
|
})),
|
||||||
fill: false,
|
fill: false,
|
||||||
borderColor: "#007bff",
|
borderColor: "#00B0F0",
|
||||||
backgroundColor: "#007bff",
|
backgroundColor: "#00B0F0",
|
||||||
tension: 0.3,
|
tension: 0.3,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ export default function AnalogeEingaengeTable({
|
|||||||
setSelectedInput(e);
|
setSelectedInput(e);
|
||||||
setIsSettingsModalOpen(true);
|
setIsSettingsModalOpen(true);
|
||||||
}}
|
}}
|
||||||
className="text-blue-600 hover:text-blue-800"
|
className="text-gray-400 hover:text-gray-500"
|
||||||
>
|
>
|
||||||
<Icon icon={settingsIcon} className="text-xl" />
|
<Icon icon={settingsIcon} className="text-xl" />
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -44,10 +44,10 @@ const Last20MessagesTable: React.FC<Props> = ({ className }) => {
|
|||||||
const allMessages = parseMessages(rawLast20Messages);
|
const allMessages = parseMessages(rawLast20Messages);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`bg-white rounded-lg overflow-auto ${className}`}>
|
<div className={`bg-white p-1 rounded-lg overflow-auto ${className}`}>
|
||||||
{/* <h1 className="text-xl font-bold mb-4">Letzte 20 Meldungen</h1> */}
|
{/* <h1 className="text-xl font-bold mb-4">Letzte 20 Meldungen</h1> */}
|
||||||
|
|
||||||
<div className="overflow-x-auto overflow-y-auto h-[95%] pt-1">
|
<div className="overflow-x-auto overflow-y-auto border rounded shadow-sm h-[95%] pt-1">
|
||||||
<table className="min-w-full border">
|
<table className="min-w-full border">
|
||||||
<thead className="bg-gray-100 text-left sticky top-0 z-10">
|
<thead className="bg-gray-100 text-left sticky top-0 z-10">
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@@ -6,5 +6,5 @@
|
|||||||
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
||||||
|
|
||||||
*/
|
*/
|
||||||
const webVersion = "1.6.357";
|
const webVersion = "1.6.358";
|
||||||
export default webVersion;
|
export default webVersion;
|
||||||
|
|||||||
Reference in New Issue
Block a user