From 5b3330ba07fcc69abe149832dd41e2055306f833 Mon Sep 17 00:00:00 2001 From: primal Date: Fri, 30 Jan 2026 16:31:32 -0500 Subject: [PATCH] v47: Fix d:feeds auto-expand for hidden container --- static/dashboard.js | 7 ++++++- templates.go | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/static/dashboard.js b/static/dashboard.js index 555b512..0498378 100644 --- a/static/dashboard.js +++ b/static/dashboard.js @@ -504,8 +504,13 @@ function initDashboard() { attachDomainHandlers(container); applyTLDFilter(); - // Auto-expand feed details in d:feeds mode + // Auto-expand feeds in d:feeds mode if (statusFilter === 'feeds') { + // Show the domain-feeds containers + container.querySelectorAll('.domain-feeds').forEach(feedsDiv => { + feedsDiv.style.display = 'block'; + }); + // Also expand feed details container.querySelectorAll('.inline-feed-block').forEach(feedBlock => { const detailDiv = feedBlock.querySelector('.feed-detail'); const feedUrl = feedBlock.dataset.url; diff --git a/templates.go b/templates.go index 33b70ca..12040ed 100644 --- a/templates.go +++ b/templates.go @@ -534,7 +534,7 @@ const dashboardHTML = `
-
v46
+
v47
Last updated: {{.UpdatedAt.Format "2006-01-02 15:04:05"}}