mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 09:47:08 +03:00
Fix empty selection in WebUI language combobox
This mostly happens with a clean install. PR #16978.
This commit is contained in:
parent
ce0e5be7ce
commit
2a6f02fa29
1 changed files with 1 additions and 1 deletions
|
@ -1900,7 +1900,7 @@
|
|||
|
||||
// Web UI tab
|
||||
// Language
|
||||
$('locale_select').setProperty('value', pref.locale);
|
||||
$('locale_select').setProperty('value', ((pref.locale === "en_US") ? "en" : pref.locale));
|
||||
$('performanceWarning').setProperty('checked', pref.performance_warning);
|
||||
|
||||
// HTTP Server
|
||||
|
|
Loading…
Reference in a new issue