Skip to content

Commit

Permalink
[start page] fix bug 72145
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkadushkin committed Dec 18, 2024
1 parent bab99d7 commit 28db32f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions common/loginpage/src/panelsettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -822,10 +822,12 @@
}

for (const [key, value] of Object.entries(l10n)) {
if ( !themes_map[key]['l10n'] )
themes_map[key]['l10n'] = {};
if ( themes_map[key] ) {
if ( !themes_map[key]['l10n'] )
themes_map[key]['l10n'] = {};

themes_map[key]['l10n'][nl] = value.text;
themes_map[key]['l10n'][nl] = value.text;
}
}

// for ( let k of Object.keys(themes_map) ) {
Expand Down

0 comments on commit 28db32f

Please sign in to comment.