mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 09:58:18 -07:00
Resolve sonarcloud javascript:S6644 code smell
This commit is contained in:
parent
a5bd72667a
commit
a71b1f4e33
@ -87,6 +87,7 @@
|
||||
- [JPUC1143](https://github.com/Jpuc1143)
|
||||
- [David Angel](https://github.com/davidangel)
|
||||
- [Pithaya](https://github.com/Pithaya)
|
||||
- [Peter Santos](https://github.com/prsantos-com)
|
||||
|
||||
## Emby Contributors
|
||||
|
||||
|
@ -57,7 +57,7 @@ function renderDynamicFilters(context, result, options) {
|
||||
|
||||
function setBasicFilter(context, key, elem) {
|
||||
let value = elem.checked;
|
||||
value = value ? value : null;
|
||||
value = value || null;
|
||||
userSettings.setFilter(key, value);
|
||||
}
|
||||
function moveCheckboxFocus(elem, offset) {
|
||||
|
Loading…
Reference in New Issue
Block a user