mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +01:00
13 lines
No EOL
431 B
JavaScript
13 lines
No EOL
431 B
JavaScript
// Fix for issue #3697: Events view for "Today" doesn't show all hourly columns
|
|
// File: src/lib/date.ts
|
|
|
|
// Fix time series generation (around line 342):
|
|
/*
|
|
const add = DATE_FUNCTIONS[unit].add;
|
|
const start = DATE_FUNCTIONS[unit].start;
|
|
const end = DATE_FUNCTIONS[unit].end; // Use end function instead of start
|
|
const fmt = DATE_FORMATS[unit];
|
|
|
|
let current = start(minDate);
|
|
const endDate = end(maxDate); // Use proper end date
|
|
*/ |