mirror of
https://github.com/stashapp/stash.git
synced 2026-05-08 12:32:29 +02: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 "";
|
||||||
}
|
}
|
||||||
|
|
||||||
return intl.formatDate(date, { format: "long" });
|
return intl.formatDate(date, { format: "long", timeZone: "utc" });
|
||||||
};
|
};
|
||||||
|
|
||||||
const TextUtils = {
|
const TextUtils = {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue