We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32819ed commit f00d11fCopy full SHA for f00d11f
1 file changed
packages/devtools-a11y/src/core/components/IssueList.tsx
@@ -81,7 +81,8 @@ export function A11yIssueList(props: A11yIssueListProps) {
81
{(impact) => {
82
const count = () =>
83
ally.allyResult.audit?.issues.reduce(
84
- (count, issue) => (issue.impact === impact ? count + 1 : count),
+ (count, issue) => (
85
+ issue.impact === impact && issue.meetsThreshold ? count + 1 : count),
86
0,
87
) || 0
88
0 commit comments