Fixed: Series end date is UTC

This commit is contained in:
Bogdan 2024-01-12 02:36:18 +02:00 committed by GitHub
parent a99fc6fa66
commit 8971ac2e14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ function getExpandedState(newState) {
}
function getDateYear(date) {
const dateDate = moment(date);
const dateDate = moment.utc(date);
return dateDate.format('YYYY');
}