From 3e6cb3bd2cacbe5b163946c44c6608679f7d54db Mon Sep 17 00:00:00 2001 From: Jake Fulmine Date: Mon, 29 Aug 2022 18:44:27 +0200 Subject: [PATCH] fix(dashboard): count filtered amount of items in list instead of all --- dashboard/src/lib/list/List.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/lib/list/List.svelte b/dashboard/src/lib/list/List.svelte index 561f69c2..7294f7a1 100644 --- a/dashboard/src/lib/list/List.svelte +++ b/dashboard/src/lib/list/List.svelte @@ -133,7 +133,7 @@ {:else} -{list.length} {itemType}s ({slicedList.length} shown) +{processedList.length} {itemType}s ({slicedList.length} shown)