mirror of
https://github.com/prymitive/karma
synced 2026-05-09 03:36:44 +00:00
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:
@@ -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>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user