0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-21 00:52:43 -05:00

fix(web): wrong month on timeline scrollbar cursor (#8996)

* fix(web): wrong month on timeline scrollbar cursor

* revert unnesessary change
This commit is contained in:
Alex 2024-04-22 06:22:59 -05:00 committed by GitHub
parent c30cd3b378
commit be4a783845
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -83,6 +83,7 @@
hoverLabel = new Date(attr).toLocaleString($locale, { hoverLabel = new Date(attr).toLocaleString($locale, {
month: 'short', month: 'short',
year: 'numeric', year: 'numeric',
timeZone: 'UTC',
}); });
}; };