feat(ui): show the number of hidden label on the overview modal

We only render top 9 labels, add a counter showing how many were skipped
This commit is contained in:
Łukasz Mierzwa
2019-07-14 19:09:20 +01:00
parent b0042af41a
commit d41fbff99e
3 changed files with 370 additions and 1 deletions

View File

@@ -38,6 +38,11 @@ const LabelsTable = observer(({ alertStore }) => (
}
/>
))}
{nameStats.values.length > 9 ? (
<div className="components-label badge my-2 text-muted mw-100">
+{nameStats.values.length - 9} more
</div>
) : null}
</td>
</tr>
))}