Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions frontend/src/v2/components/Gallery/GalleryShell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,17 @@ const {
selectedMetadataProviders,
selectedTags,
selectedStatuses,
genresLogic,
franchisesLogic,
collectionsLogic,
companiesLogic,
ageRatingsLogic,
regionsLogic,
languagesLogic,
playerCountsLogic,
metadataProvidersLogic,
tagsLogic,
statusesLogic,
} = storeToRefs(galleryFilterStore);

// Drawer open state — bound to FilterDrawer via v-model.
Expand Down Expand Up @@ -242,6 +253,19 @@ watch(
selectedMetadataProviders,
selectedTags,
selectedStatuses,
// Logic operators (any/all/none) also change the result set, e.g.
// switching statuses to "none" to invert the selection.
genresLogic,
franchisesLogic,
collectionsLogic,
companiesLogic,
ageRatingsLogic,
regionsLogic,
languagesLogic,
playerCountsLogic,
metadataProvidersLogic,
tagsLogic,
statusesLogic,
],
() => {
galleryRoms.invalidateWindows();
Expand Down
Loading