development -> main #1

Open
Christopher.Hase wants to merge 93 commits from development into main
Showing only changes of commit 165b39ded7 - Show all commits

View file

@ -2,7 +2,7 @@ function handleClick(): void {
console.log("Der Button wurde geklickt!"); console.log("Der Button wurde geklickt!");
//alert("Hallo von TypeScript!"); //alert("Hallo von TypeScript!");
fetch("iching/api/command", { method: "POST" }) fetch("/iching/api/command", { method: "POST" })
.then(res => res.text()) .then(res => res.text())
.then(text => console.log("Server sagt:", text)) .then(text => console.log("Server sagt:", text))
.catch(error => console.error("Fehler:", error)); .catch(error => console.error("Fehler:", error));