From a8d2382e646e5050351caa45658cb88debfa6b5b 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 --- dashboard/src/progress.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dashboard/src/progress.md b/dashboard/src/progress.md index deba8d9..c2bf0d3 100644 --- a/dashboard/src/progress.md +++ b/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();