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 += `