mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-22 17:23:54 +01:00
Merge pull request #470 from reithose/master
Correct hour format realtime page
This commit is contained in:
commit
8940b649bc
@ -44,7 +44,7 @@ export default function BarChart({
|
|||||||
|
|
||||||
switch (unit) {
|
switch (unit) {
|
||||||
case 'minute':
|
case 'minute':
|
||||||
return index % 2 === 0 ? dateFormat(d, 'h:mm', locale) : '';
|
return index % 2 === 0 ? dateFormat(d, 'H:mm', locale) : '';
|
||||||
case 'hour':
|
case 'hour':
|
||||||
return dateFormat(d, 'ha', locale);
|
return dateFormat(d, 'ha', locale);
|
||||||
case 'day':
|
case 'day':
|
||||||
|
Loading…
Reference in New Issue
Block a user