Skip to content

Commit

Permalink
fix(framework): always fire languageChange regardless of boot status (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vladitasev authored Oct 16, 2024
1 parent ee808c3 commit 9261ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/base/src/config/Language.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ const setLanguage = async (language: string): Promise<void> => {

curLanguage = language;

await fireLanguageChange(language);
if (isBooted()) {
await fireLanguageChange(language);
await reRenderAllUI5Elements({ languageAware: true });
}
};
Expand Down

0 comments on commit 9261ac9

Please sign in to comment.