fix: nur 8 Analoge Eingänge

This commit is contained in:
ISA
2025-06-27 07:30:50 +02:00
parent d3a8556b2f
commit 188fa97f7d
6 changed files with 12 additions and 6 deletions

View File

@@ -46,7 +46,7 @@ export default function AnalogInputsTable({
</h2>
<div className="overflow-x-auto">
<table className="w-full text-xs laptop:text-[10px] xl:text-xs 2xl:text-sm border-collapse">
<thead className="bg-gray-100 border-b">
<thead className="bg-gray-100 border-b items-center ">
<tr>
<th className="border p-1 text-left">Eingang</th>
<th className="border p-1 text-left">Messwert</th>
@@ -61,6 +61,7 @@ export default function AnalogInputsTable({
(e) =>
e && typeof e.id === "number" && typeof e.label === "string"
)
.slice(0, 8)
.map((e, index) => (
<tr
key={index}