mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
Localized date and time in charts
This commit is contained in:
parent
1aa213d342
commit
fa15a470fd
2 changed files with 3 additions and 3 deletions
|
|
@ -11,11 +11,11 @@ export function renderDateLabels(unit: string, locale: string) {
|
|||
|
||||
switch (unit) {
|
||||
case 'minute':
|
||||
return formatDate(d, 'h:mm', locale);
|
||||
return formatDate(d, 'p', locale).split(' ')[0];
|
||||
case 'hour':
|
||||
return formatDate(d, 'p', locale);
|
||||
case 'day':
|
||||
return formatDate(d, 'MMM d', locale);
|
||||
return formatDate(d, 'PP', locale).replace(/\W*20\d{2}\W*/, ''); // Remove year
|
||||
case 'month':
|
||||
return formatDate(d, 'MMM', locale);
|
||||
case 'year':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue