Update view language if system language is changed and the user has no profile language set

This commit is contained in:
Johannes Zellner
2025-09-17 12:06:50 +02:00
parent 753092db30
commit 9ba4ac9956
4 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -246,7 +246,7 @@ onMounted(async () => {
await refreshProfile();
// ensure language from profile if set
if (profile.value.language) await setLanguage(profile.value.language);
if (profile.value.language) await setLanguage(profile.value.language, true);
[error, result] = await dashboardModel.config();
if (error) return console.error(error);