Merge pull request #470 from reithose/master

Correct hour format realtime page
This commit is contained in:
Mike Cao 2021-02-13 23:43:35 -08:00 committed by GitHub
commit 8940b649bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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':