Skip to content

Commit

Permalink
fix: link to unhealthy flags filter
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
thomasheartman committed Nov 20, 2024
1 parent 5406d4d commit 06c0ad6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 06c0ad6

Please sign in to comment.