File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/devtools-a11y/src/core Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export function A11ySettingsOverlay(props: A11ySettingsOverlayProps) {
6666 { value : 'moderate' , label : 'Moderate' } ,
6767 { value : 'minor' , label : 'Minor' } ,
6868 ] }
69- onChange = { ( value : string ) => {
69+ onChange = { ( value : string ) => {
7070 setConfig ( 'threshold' , value as SeverityThreshold )
7171 } }
7272 />
Original file line number Diff line number Diff line change @@ -268,7 +268,11 @@ export async function runAudit(
268268 ? document . querySelector ( context ) || document
269269 : context
270270
271- const customIssues = runCustomRules ( contextElement , customRulesConfig , threshold )
271+ const customIssues = runCustomRules (
272+ contextElement ,
273+ customRulesConfig ,
274+ threshold ,
275+ )
272276
273277 // Merge all issues
274278 const allIssues = [ ...axeIssues , ...customIssues ]
You can’t perform that action at this time.
0 commit comments