We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
Sentry Issue: ECAMP3-PRINT-66
Sorry, something went wrong.
The error is: fallback[locale].filter is not a function or its return value is not iterable
let fallbackLocales = []; if (isArray(fallback)) { fallbackLocales = fallback; } else if (isObject(fallback)) { const targets = [...locales, "default"]; for (const locale of targets) { if (fallback[locale]) { fallbackLocales = [...fallbackLocales, ...fallback[locale].filter(Boolean)]; } } } else if (isString(fallback) && locales.every((locale) => locale !== fallback)) { fallbackLocales.push(fallback); } return fallbackLocales; }
vueI18nConfig.js: fallbackLocale.default now needs to be an array
ff4cd03
This fixes: fallback[locale].filter is not a function or its return value is not iterable Fixes ecamp#6761
203972c
BacLuc
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: