dev #1

Merged
alientim merged 145 commits from dev into main 2025-10-12 13:44:14 +02:00
Showing only changes of commit af689c20b8 - Show all commits

View File

@@ -33,8 +33,7 @@ document.addEventListener("DOMContentLoaded", () => {
.then(data => {
const box = document.getElementById("log-box");
const filteredLines = data
.split("\n")
.filter(line => !line.includes("ist erreichbar!"));
.split("\n");
box.innerText = filteredLines.join("\n");
box.scrollTop = box.scrollHeight;