From 57801d0946262ec5de0d1be8c4820fb80a41c2ab Mon Sep 17 00:00:00 2001 From: primal Date: Fri, 30 Jan 2026 16:36:14 -0500 Subject: [PATCH] v48: domain name links to site, spacer toggles feeds --- static/dashboard.js | 21 +++++++++------------ templates.go | 2 +- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/static/dashboard.js b/static/dashboard.js index 0498378..eff91fc 100644 --- a/static/dashboard.js +++ b/static/dashboard.js @@ -97,19 +97,16 @@ function initDashboard() { // Status buttons (pass/hold/skip + fail indicator if error) html += renderStatusBtns(status, 'domain', d.host, hasError ? 'error' : null); - // Domain name (clickable to show feeds) - html += `${escapeHtml(d.host)}`; + // Domain name (links to site) + html += `${escapeHtml(d.host)}`; - // Error message + // Spacer (clickable to toggle feeds) if (d.last_error) { - html += `${escapeHtml(d.last_error)}`; + html += `${escapeHtml(d.last_error)}`; } else { - html += ''; + html += ''; } - // External link - html += ``; - // Drop button (only for skipped domains) if (status === 'skip') { html += `