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

Update src/components/filterdialog/filterdialog.js

Co-authored-by: viown <48097677+viown@users.noreply.github.com>
This commit is contained in:
othmar52 2024-11-26 03:24:55 +01:00 committed by Bill Thornton
parent c36e054435
commit 5602cd4ec4

View file

@ -61,7 +61,7 @@ function renderFilters(context, result, query) {
function renderResetButton(context, query) {
const elem = context.querySelector('.btnResetAllFilters');
if (getFilterStatus(query) === true) {
if (getFilterStatus(query)) {
elem.classList.remove('hide');
return;
}