TDR und Schleife Button in KÜs wieder für die Funktionen

This commit is contained in:
ISA
2025-07-24 14:56:24 +02:00
parent 8dafd5fe67
commit cfe838dd07
6 changed files with 12 additions and 7 deletions

View File

@@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false
NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_EXPORT_STATIC=false
NEXT_PUBLIC_USE_CGI=false NEXT_PUBLIC_USE_CGI=false
# App-Versionsnummer # App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.647 NEXT_PUBLIC_APP_VERSION=1.6.648
NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) 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_EXPORT_STATIC=true
NEXT_PUBLIC_USE_CGI=true NEXT_PUBLIC_USE_CGI=true
# App-Versionsnummer # App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.647 NEXT_PUBLIC_APP_VERSION=1.6.648
NEXT_PUBLIC_CPL_MODE=production NEXT_PUBLIC_CPL_MODE=production

View File

@@ -1,3 +1,8 @@
## [1.6.648] 2025-07-24
- TDR und Schleife Button in KÜs wieder für die Funktionen
---
## [1.6.647] 2025-07-24 ## [1.6.647] 2025-07-24
- feat: - feat:

View File

@@ -385,13 +385,13 @@ const Kue705FO: React.FC<Kue705FOProps> = ({
{/* TDR and KVz Buttons */} {/* TDR and KVz Buttons */}
<div className="flex space-x-2 p-1"> <div className="flex space-x-2 p-1">
<button <button
onClick={() => handleButtonClick("TDR", setActiveButton)} onClick={openChartModal}
className=" bg-littwin-blue text-white text-[0.625rem] flex items-center justify-center p-2" className=" bg-littwin-blue text-white text-[0.625rem] flex items-center justify-center p-2"
> >
TDR TDR
</button> </button>
<button <button
onClick={() => handleButtonClick("KVz", setActiveButton)} onClick={openChartModal}
className="bg-littwin-blue text-white text-[0.625rem] flex items-center justify-center p-2" className="bg-littwin-blue text-white text-[0.625rem] flex items-center justify-center p-2"
> >
KVz KVz

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.647", "version": "1.6.648",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.647", "version": "1.6.648",
"dependencies": { "dependencies": {
"@fontsource/roboto": "^5.1.0", "@fontsource/roboto": "^5.1.0",
"@headlessui/react": "^2.2.4", "@headlessui/react": "^2.2.4",

View File

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