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

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