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"}}