lastTDR in CPL Verzeichnis

This commit is contained in:
ISA
2024-10-25 06:40:49 +02:00
parent 85bc6f86de
commit f085787053
85 changed files with 383943 additions and 165 deletions

View File

@@ -114,7 +114,7 @@ function KueModal({ showModal, onClose, slot, onModulNameChange }) {
// Falls Änderungen vorhanden sind, die fetch-Requests auslösen
if (Object.keys(changes).length > 0) {
let url = `/cpl?/SERVICE/kueDetail.HTML&slot=${slot}`;
let url = `/cpl?/CPL/SERVICE/kueDetail.HTML&slot=${slot}`;
Object.keys(changes).forEach((paramKey) => {
url += `&${paramKey}${slot}=${encodeURIComponent(changes[paramKey])}`;
@@ -142,7 +142,7 @@ function KueModal({ showModal, onClose, slot, onModulNameChange }) {
};
const handleDisplayEinschalten = () => {
const url = `/CPL?/Service/kueDetail.HTML&KSD${slot}=1`;
const url = `/CPL?/CPL/Service/kueDetail.HTML&KSD${slot}=1`;
fetch(url, { method: "GET" })
.then((response) => {
if (response.ok) {