srv/poe_manager/templates/logs.html aktualisiert

This commit is contained in:
2025-10-08 21:33:16 +02:00
parent 57ce7d0c6f
commit af689c20b8

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;