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 => { .then(data => {
const box = document.getElementById("log-box"); const box = document.getElementById("log-box");
const filteredLines = data const filteredLines = data
.split("\n") .split("\n");
.filter(line => !line.includes("ist erreichbar!"));
box.innerText = filteredLines.join("\n"); box.innerText = filteredLines.join("\n");
box.scrollTop = box.scrollHeight; box.scrollTop = box.scrollHeight;