diff options
| author | Fuwn <[email protected]> | 2025-06-13 05:31:28 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-13 05:31:28 -0700 |
| commit | 761082a66b5c0e0e1ed4f5de9f58525f3a1512e8 (patch) | |
| tree | 55658671499a5ee9fe1879b952a958f6beb694ee /src/lib/List/Anime/CompletedAnimeList.svelte | |
| parent | refactor(Settings): Update localStorage references (diff) | |
| download | due.moe-761082a66b5c0e0e1ed4f5de9f58525f3a1512e8.tar.xz due.moe-761082a66b5c0e0e1ed4f5de9f58525f3a1512e8.zip | |
fix(Landing): Disable filtering
Diffstat (limited to 'src/lib/List/Anime/CompletedAnimeList.svelte')
| -rw-r--r-- | src/lib/List/Anime/CompletedAnimeList.svelte | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/List/Anime/CompletedAnimeList.svelte b/src/lib/List/Anime/CompletedAnimeList.svelte index 1fa775c4..4245525d 100644 --- a/src/lib/List/Anime/CompletedAnimeList.svelte +++ b/src/lib/List/Anime/CompletedAnimeList.svelte @@ -18,6 +18,7 @@ tokenType: '' }; export let dummy = false; + export let disableFilter = false; const { addNotification } = getNotificationsContext(); let animeLists: Promise<Media[]>; @@ -127,4 +128,5 @@ title={$locale().lists.completed.anime} completed {dummy} + {disableFilter} /> |