From e4f9cf885b67ddfb83f7aa336a6ee8fcc357a029 Mon Sep 17 00:00:00 2001 From: eol Date: Fri, 24 Jul 2026 02:17:02 -0400 Subject: [PATCH] =?UTF-8?q?fix(dashboard):=20rename=20ARTICLES=20=E2=86=92?= =?UTF-8?q?=20NEWS=20in=20recent=20activity=20(overflow=20fix)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ARTICLES label (8 chars mono) overflowed the fixed 56px badge column in .recent-row. NEWS (4 chars) fits within the column width. Reverts the NEWS→ARTICLES rename from PR #56 for this specific badge. --- dashboard/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/app.js b/dashboard/app.js index c66f735b..485f4ae9 100644 --- a/dashboard/app.js +++ b/dashboard/app.js @@ -736,12 +736,12 @@ function renderRecentActivity() { OPENED ${newCt} LOG ${logCt} - ARTICLES ${newsCt} + NEWS ${newsCt} `; const BADGE = { NEW: "recent-badge--new", LOG: "recent-badge--log", NEWS: "recent-badge--news" }; - const LABEL = { NEW: "OPENED", LOG: "LOG", NEWS: "ARTICLES" }; + const LABEL = { NEW: "OPENED", LOG: "LOG", NEWS: "NEWS" }; $("#recentFeed").innerHTML = events.map((e) => { const tsLbl = (e.ts || "").slice(0, 16).replace("T", " ") || "—"; const name = e.incident_name || e.detail;