rm extra space between tag and count in Tag filter

This commit is contained in:
Collin M. Barrett 2019-09-03 15:37:01 -05:00
parent 5ac05743c7
commit 341ad894e5

View file

@ -140,7 +140,7 @@ export const ListsTable = (props: RouteComponentProps & Props) => {
className={styles.nogrow}
filters={tags.map(t => ({
text: <>
<Tag title={t.description}>{t.name}</Tag>&nbsp;
<Tag title={t.description}>{t.name}</Tag>
({visibleLists.filter(l => l.tagIds && l.tagIds.includes(t.id)).length})
</>,
value: t.id.toString()