From d61347e998d505b4c9a11b3fc4bd07d27f2d4665 Mon Sep 17 00:00:00 2001 From: Christoph Gasser Date: Mon, 27 Apr 2026 16:17:58 +0200 Subject: [PATCH] Default sort by IP address on page load Co-Authored-By: Claude Sonnet 4.6 --- app/templates/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/templates/index.html b/app/templates/index.html index cb4c1c6..d67a221 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -328,6 +328,9 @@ }); }); + // Sort by IP on initial load + document.querySelector('[data-sort="ip"]')?.click(); + // ── IP range filter button ───────────────────────────────────────────────── const btnIpFilter = document.getElementById('btn-ip-filter'); const ipFilterLabel = document.getElementById('ip-filter-label');