dashboard: add 'Event Log' subtitle above filtered table on progress page

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 17:06:28 +01:00
parent 7a6eb76d91
commit 7d7cd31244

View File

@@ -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();