Skip to content

Commit

Permalink
vueI18nConfig.js: fallbackLocale.default now needs to be an array
Browse files Browse the repository at this point in the history
This fixes:
fallback[locale].filter is not a function or its return value is not iterable

Fixes ecamp#6761
  • Loading branch information
BacLuc committed Feb 6, 2025
1 parent 69a4151 commit 203972c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion print/locales/vueI18nConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import rmCHScoutCommon from '@/common/locales/rm-CH-scout.json'
export default defineI18nConfig(() => ({
fallbackLocale: {
rm: ['de'],
default: 'en',
default: ['en'],
},
messages: deepmerge(
{
Expand Down

0 comments on commit 203972c

Please sign in to comment.