From 341ad894e54b6a2c65b66a7047c11a58455e5197 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 3 Sep 2019 15:37:01 -0500 Subject: [PATCH] rm extra space between tag and count in Tag filter --- src/FilterLists.Web/src/components/listsTable/ListsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx b/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx index fc3ddce9d..081c9003d 100644 --- a/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx +++ b/src/FilterLists.Web/src/components/listsTable/ListsTable.tsx @@ -140,7 +140,7 @@ export const ListsTable = (props: RouteComponentProps & Props) => { className={styles.nogrow} filters={tags.map(t => ({ text: <> - {t.name}  + {t.name} ({visibleLists.filter(l => l.tagIds && l.tagIds.includes(t.id)).length}) , value: t.id.toString()