From 7d7cd312449a9a75657fa2b412930d3394fcf2f3 Mon Sep 17 00:00:00 2001 From: tegwick Date: Thu, 26 Feb 2026 17:06:28 +0100 Subject: [PATCH] dashboard: add 'Event Log' subtitle above filtered table on progress page Co-Authored-By: Claude Sonnet 4.6 --- state-hub/dashboard/src/progress.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/state-hub/dashboard/src/progress.md b/state-hub/dashboard/src/progress.md index deba8d9..c2bf0d3 100644 --- a/state-hub/dashboard/src/progress.md +++ b/state-hub/dashboard/src/progress.md @@ -79,6 +79,8 @@ display(byDay.length === 0 ); ``` +## Event Log + ```js const authorOpts = ["(all)", ...new Set(data.map(e => e.author ?? "unknown"))].sort(); const typeOpts = ["(all)", ...new Set(data.map(e => e.event_type))].sort();