dev #1

Merged
alientim merged 145 commits from dev into main 2025-10-12 13:44:14 +02:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit b2f9b701fe - Show all commits

Binary file not shown.

View File

@@ -61,7 +61,7 @@ document.addEventListener("DOMContentLoaded", () => {
fetch("{{ url_for('get_log') }}")
.then(response => response.text())
.then(data => {
const lines = data.split("\n").filter(line => !line.includes("ist erreichbar!"));
const lines = data.split("\n");
let lastSepIndex = -1;
for (let i = lines.length - 1; i >= 0; i--) {
if (lines[i].startsWith("--------------------------------------------------------------------")) {