mirror of
https://github.com/stashapp/stash.git
synced 2026-01-15 10:40:34 -06:00
Fix date timezone bug (#807)
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user