We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ea2bcf commit 29e39dfCopy full SHA for 29e39df
ui/src/table.tsx
@@ -402,7 +402,7 @@ const
402
if (c.filterable) {
403
const dataKey = c.name // Assuming the column name represents the data key
404
const appliedFilters = selectedFilters?.[dataKey]?.length || 0
405
- label += appliedFilters > 0 ? ` (${appliedFilters} filters)` : ''
+ label += (appliedFilters > 0 && appliedFilters <= 9) ? ` (${appliedFilters})` : appliedFilters > 9 ? '(9+)' : ''
406
}
407
return {
408
key: c.name,
0 commit comments