mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 19:45:35 +01:00
Fix multiple issues: tracker multiple execution, credentials configurable, exclude-hash, and other fixes
This commit is contained in:
parent
d590c6b078
commit
46532f0778
23 changed files with 553 additions and 30 deletions
13
contributions/events-today-columns-fix.js
Normal file
13
contributions/events-today-columns-fix.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// 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
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue