Resolve sonarcloud javascript:S6644 code smell

This commit is contained in:
Peter Santos 2024-05-29 23:46:41 -04:00
parent a5bd72667a
commit a71b1f4e33
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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) {