mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
Correct hour display
When unit is minute
This commit is contained in:
parent
30ebf7b266
commit
117bce9c1a
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ export default function BarChart({
|
|||
|
||||
switch (unit) {
|
||||
case 'minute':
|
||||
return index % 2 === 0 ? dateFormat(d, 'h:mm', locale) : '';
|
||||
return index % 2 === 0 ? dateFormat(d, 'H:mm', locale) : '';
|
||||
case 'hour':
|
||||
return dateFormat(d, 'ha', locale);
|
||||
case 'day':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue