add 23:00-24:00 in daily report tab

This commit is contained in:
Yinyin Liu 2026-03-28 09:47:05 +01:00
parent 015cd5e5e6
commit 4bc6712e60
1 changed files with 4 additions and 3 deletions

View File

@ -353,9 +353,10 @@ function DayStrip({
// ── IntradayChart ────────────────────────────────────────────
const HOUR_LABELS = Array.from({ length: 24 }, (_, i) =>
`${String(i).padStart(2, '0')}:00`
);
const HOUR_LABELS = [
...Array.from({ length: 24 }, (_, i) => `${String(i).padStart(2, '0')}:00`),
'24:00'
];
function IntradayChart({
hourlyData,