mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Merge pull request #475 from YunoHost/fix-locales
fix: wait for locales to be loaded before mounting the app
This commit is contained in:
commit
907ae94b6b
2 changed files with 9 additions and 9 deletions
|
@ -80,7 +80,7 @@ function initDefaultLocales () {
|
||||||
|
|
||||||
store.dispatch('UPDATE_LOCALE', locale)
|
store.dispatch('UPDATE_LOCALE', locale)
|
||||||
store.dispatch('UPDATE_FALLBACKLOCALE', fallbackLocale || 'en')
|
store.dispatch('UPDATE_FALLBACKLOCALE', fallbackLocale || 'en')
|
||||||
loadLocaleMessages('en')
|
return loadLocaleMessages('en')
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
|
|
@ -55,13 +55,13 @@ requireComponent.keys().forEach((fileName) => {
|
||||||
registerGlobalErrorHandlers()
|
registerGlobalErrorHandlers()
|
||||||
|
|
||||||
// Load default locales translations files and setup store data
|
// Load default locales translations files and setup store data
|
||||||
initDefaultLocales()
|
initDefaultLocales().then(() => {
|
||||||
|
const app = new Vue({
|
||||||
const app = new Vue({
|
|
||||||
store,
|
store,
|
||||||
router,
|
router,
|
||||||
i18n,
|
i18n,
|
||||||
render: h => h(App)
|
render: h => h(App)
|
||||||
})
|
})
|
||||||
|
|
||||||
app.$mount('#app')
|
app.$mount('#app')
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in a new issue