mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02:00
Merge 0dee500b80
into 3bb317ad6d
This commit is contained in:
commit
2460eb12ee
@ -84,7 +84,7 @@ export const LifecycleFilters = ({
|
||||
: allFlagsCount || undefined;
|
||||
const dynamicLabel =
|
||||
isActive && Number.isInteger(total)
|
||||
? `${label} (${total === count ? total : `${total} of ${count}`})`
|
||||
? `${label} (${total === (count ?? 0) ? total : `${total} of ${count}`})`
|
||||
: `${label}${count !== undefined ? ` (${count})` : ''}`;
|
||||
|
||||
const handleClick = () =>
|
||||
|
Loading…
Reference in New Issue
Block a user