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

@@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false
NEXT_PUBLIC_EXPORT_STATIC=false
NEXT_PUBLIC_USE_CGI=false
# App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.487
NEXT_PUBLIC_APP_VERSION=1.6.488
NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter)

View File

@@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL
NEXT_PUBLIC_EXPORT_STATIC=true
NEXT_PUBLIC_USE_CGI=true
# App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.487
NEXT_PUBLIC_APP_VERSION=1.6.488
NEXT_PUBLIC_CPL_MODE=production

View File

@@ -1,3 +1,8 @@
## [1.6.488] 2025-06-27
- refactorring dashboard
---
## [1.6.487] 2025-06-27
- refactor

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}

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "cpl-v4",
"version": "1.6.487",
"version": "1.6.488",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "cpl-v4",
"version": "1.6.487",
"version": "1.6.488",
"dependencies": {
"@fontsource/roboto": "^5.1.0",
"@iconify-icons/ri": "^1.2.10",

View File

@@ -1,6 +1,6 @@
{
"name": "cpl-v4",
"version": "1.6.487",
"version": "1.6.488",
"private": true,
"scripts": {
"dev": "next dev",