v36: Widen language column to 32px

This commit is contained in:
primal
2026-01-30 16:00:27 -05:00
parent a5fe2962c3
commit 2504927022
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ function initDashboard() {
// Language indicator (fixed width)
const lang = f.language || '';
html += `<span style="display: inline-block; width: 24px; color: #666; font-size: 10px; font-family: monospace; text-align: center;">${escapeHtml(lang)}</span>`;
html += `<span style="display: inline-block; width: 32px; color: #666; font-size: 10px; font-family: monospace; text-align: center;">${escapeHtml(lang)}</span>`;
// Feed status buttons
html += renderStatusBtns(feedStatus, 'feed', f.url, f.status);
@@ -176,7 +176,7 @@ function initDashboard() {
// Language indicator (fixed width)
const lang = f.language || '';
html += `<span style="display: inline-block; width: 24px; color: #666; font-size: 10px; font-family: monospace; text-align: center; padding-top: 4px;">${escapeHtml(lang)}</span>`;
html += `<span style="display: inline-block; width: 32px; color: #666; font-size: 10px; font-family: monospace; text-align: center; padding-top: 4px;">${escapeHtml(lang)}</span>`;
// Status buttons (pass/hold/skip + fail indicator if errors)
html += `<div style="padding-top: 2px;">${renderStatusBtns(status, 'feed', f.url, f.status)}</div>`;
+1 -1
View File
@@ -534,7 +534,7 @@ const dashboardHTML = `<!DOCTYPE html>
<div id="output"></div>
</div>
<div style="color: #333; font-size: 11px; margin-top: 10px;">v35</div>
<div style="color: #333; font-size: 11px; margin-top: 10px;">v36</div>
<div class="updated" id="updatedAt">Last updated: {{.UpdatedAt.Format "2006-01-02 15:04:05"}}</div>
</body>