mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03: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