add titles to Tag filter options

closes #548
This commit is contained in:
Collin M. Barrett 2018-10-01 19:34:23 -05:00
parent e1d72bc8c0
commit 5b669084e4

View file

@ -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}