diff options
author | Wolfgang Müller | 2025-02-20 15:24:42 +0100 |
---|---|---|
committer | Wolfgang Müller | 2025-02-20 19:51:39 +0100 |
commit | 8e9aa5f6286a15c818a47344fc80964f5288bb52 (patch) | |
tree | b3ef187daff345eeb918ab07900cc1c4185c53e4 /frontend/src/routes/artists/+page.svelte | |
parent | c6bf35aea63969b90463d6e70cb02ed61e4e3270 (diff) | |
download | hircine-8e9aa5f6286a15c818a47344fc80964f5288bb52.tar.gz |
frontend: Allow filtering for orphaned associations
With the association count filters in place we may now also allow the
user to filter for associations that do not have a matching counterparts
(artists without a comic, for example).
Diffstat (limited to 'frontend/src/routes/artists/+page.svelte')
-rw-r--r-- | frontend/src/routes/artists/+page.svelte | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/routes/artists/+page.svelte b/frontend/src/routes/artists/+page.svelte index 9f0d893..9fff9d2 100644 --- a/frontend/src/routes/artists/+page.svelte +++ b/frontend/src/routes/artists/+page.svelte @@ -20,6 +20,7 @@ import { initSelectionContext } from '$lib/selection/Selection.svelte'; import SelectionOverlay from '$lib/selection/SelectionOverlay.svelte'; import DeleteSelection from '$lib/toolbar/DeleteSelection.svelte'; + import FilterOrphaned from '$lib/toolbar/FilterOrphaned.svelte'; import Search from '$lib/toolbar/Search.svelte'; import SelectItems from '$lib/toolbar/SelectItems.svelte'; import SelectSort from '$lib/toolbar/SelectSort.svelte'; @@ -69,6 +70,7 @@ {/snippet} {#snippet center()} <Search name="Artists" {filter} bind:field={filter.include.name.contains} /> + <FilterOrphaned {filter} /> <SelectSort {sort} labels={ArtistSortLabel} /> <SelectItems {pagination} /> {/snippet} |