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:
commit
1d647bcf03
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue