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

fix: link to unhealthy flags filter (#8802)

This change updates the "view unhealthy flags" link in the project
status sidebar to use the correct filter. The previous link was put in
before we had a filter for potentially stale, so this updates the link
to use that filter.
This commit is contained in:
Thomas Heartman 2024-11-20 10:37:39 +01:00 committed by GitHub
parent 20749cf771
commit 0f91c6b0c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -165,7 +165,9 @@ export const ProjectHealth = () => {
flags and remove code from your code base to reduce
technical debt.
</Typography>
<Link to={`/projects/${projectId}?state=IS%3Astale`}>
<Link
to={`/projects/${projectId}?state=IS_ANY_OF%3Astale%2Cpotentially-stale`}
>
View unhealthy flags
</Link>
</TextContainer>