mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 12:25:23 +01:00
Fix date timezone bug (#807)
This commit is contained in:
parent
147f50de6b
commit
7f907fdf41
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ const formatDate = (intl: IntlShape, date?: string) => {
|
|||
return "";
|
||||
}
|
||||
|
||||
return intl.formatDate(date, { format: "long" });
|
||||
return intl.formatDate(date, { format: "long", timeZone: "utc" });
|
||||
};
|
||||
|
||||
const TextUtils = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue