1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

feat: capped at limit strategy in application usage (#6323)

This commit is contained in:
Mateusz Kwasniewski 2024-02-22 20:35:39 +01:00 committed by GitHub
parent 24d6d24e24
commit ef021a9464
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,10 @@ export const StrategyDetails = ({
</Grid>
<Grid item sm={12} md={toggles.length > 0 ? 6 : 12}>
<h6>Applications using this strategy</h6>
<h6>
Applications using this strategy{' '}
{applications.length >= 1000 && '(Capped at 1000)'}
</h6>
<hr />
<AppsLinkList apps={applications} />
</Grid>