mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
parent
e1d72bc8c0
commit
5b669084e4
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ const Filter = (props: any, tags: ITag[]) =>
|
|||
<option value="any">Any</option>
|
||||
{tags.length > 0
|
||||
? tags.map((t: ITag, i: number) =>
|
||||
<option value={t.id} key={i}>
|
||||
<option value={t.id} title={t.description} key={i}>
|
||||
{t.name} ({t.filterListIds ? t.filterListIds.length : 0})
|
||||
</option>)
|
||||
: null}
|
||||
|
|
|
|||
Loading…
Reference in a new issue