1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #5631 from prsantos-com/sonarcloud-resolve-s6644

This commit is contained in:
Bill Thornton 2024-06-09 17:02:20 -04:00 committed by GitHub
commit 1d647bcf03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -87,6 +87,7 @@
- [JPUC1143](https://github.com/Jpuc1143) - [JPUC1143](https://github.com/Jpuc1143)
- [David Angel](https://github.com/davidangel) - [David Angel](https://github.com/davidangel)
- [Pithaya](https://github.com/Pithaya) - [Pithaya](https://github.com/Pithaya)
- [Peter Santos](https://github.com/prsantos-com)
## Emby Contributors ## Emby Contributors

View file

@ -57,7 +57,7 @@ function renderDynamicFilters(context, result, options) {
function setBasicFilter(context, key, elem) { function setBasicFilter(context, key, elem) {
let value = elem.checked; let value = elem.checked;
value = value ? value : null; value = value || null;
userSettings.setFilter(key, value); userSettings.setFilter(key, value);
} }
function moveCheckboxFocus(elem, offset) { function moveCheckboxFocus(elem, offset) {