mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-25 23:22:06 -05:00
Fix: dayjs locales won't fully load if the locale isn't selected first.
This commit is contained in:
parent
d69b10adf5
commit
d5fae8b9f0
1 changed files with 2 additions and 1 deletions
|
@ -195,11 +195,12 @@ function Locale({ children, locale }: Props) {
|
||||||
`../../node_modules/dayjs/esm/locale/${target}.js`
|
`../../node_modules/dayjs/esm/locale/${target}.js`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
dayjs.locale(target, dayjs_locale.default);
|
||||||
|
|
||||||
if (defn.dayjs) {
|
if (defn.dayjs) {
|
||||||
dayjs.updateLocale(target, { calendar: defn.dayjs });
|
dayjs.updateLocale(target, { calendar: defn.dayjs });
|
||||||
}
|
}
|
||||||
|
|
||||||
dayjs.locale(target, dayjs_locale.default);
|
|
||||||
setDefinition(defn);
|
setDefinition(defn);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue