Skip to content

Commit

Permalink
Fix: settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Aug 2, 2023
1 parent 49a7ed1 commit c05ce02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion htdocs/js/globales.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ const settingsFields = {
"options": []
}
},
"listenBrainzToken": {
"listenbrainzToken": {
"defaultValue": "",
"inputType": "password",
"title": "ListenBrainz Token",
Expand Down
2 changes: 1 addition & 1 deletion htdocs/js/modalSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function toggleThemeInputs(theme) {
*/
function getBgImageText(value) {
if (value === '') {
return 'None';
return tn('None');
}
for (const key of bgImageValues) {
if (key.value === value) {
Expand Down

0 comments on commit c05ce02

Please sign in to comment.