We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 845a6c3 commit 0dc670cCopy full SHA for 0dc670c
1 file changed
frontend/src/v2/components/Gallery/GalleryShell.vue
@@ -160,6 +160,7 @@ const {
160
filterRA,
161
filterSaves,
162
filterStates,
163
+ filterSoundtrack,
164
selectedPlatforms,
165
selectedGenres,
166
selectedFranchises,
@@ -192,6 +193,7 @@ const filterActiveCount = computed(() => {
192
193
if (filterRA.value !== null) n += 1;
194
if (filterSaves.value !== null) n += 1;
195
if (filterStates.value !== null) n += 1;
196
+ if (filterSoundtrack.value !== null) n += 1;
197
if (selectedPlatforms.value.length > 0) n += 1;
198
for (const arr of [
199
@@ -227,6 +229,7 @@ watch(
227
229
228
230
231
232
233
234
235
0 commit comments