fix(sentry): syntaxError: No error message (#13954)

This commit is contained in:
Sivin Varghese
2026-03-31 21:09:02 +05:30
committed by GitHub
parent 5de7ae492c
commit 8824efe0e1
3 changed files with 13 additions and 8 deletions

View File

@@ -35,7 +35,9 @@ export default {
};
},
setLocale(locale) {
this.$root.$i18n.locale = locale;
if (locale) {
this.$root.$i18n.locale = locale;
}
},
},
};