umami/contributions/events-today-columns-fix.js

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
*/