diff --git a/components/modules/Kue705FO.jsx b/components/modules/Kue705FO.jsx index b8eaf6b..fa436ec 100644 --- a/components/modules/Kue705FO.jsx +++ b/components/modules/Kue705FO.jsx @@ -136,11 +136,13 @@ function Kue705FO({ let slotFormat = slot < 10 ? `0${slot}` : `${slot}`; setLoading(true); + alert(`TDR wird für Slot ${slot} gestartet...`); fetch(`/CPL?Service/KUEdetailTDR.ACP&KTT${slotFormat}=1&slot=${slot}`, { method: "GET", }) .then((response) => { if (response.ok) { + alert(`TDR erfolgreich gestartet für Slot ${slot}`); console.log("TDR erfolgreich gestartet für Slot", slot); } else { console.error("Fehler beim Senden der TDR-Anfrage");