Skip to content

Commit 1b73c3b

Browse files
committed
fix(a11y): correct aria-roledescription attribute name
fixes #4371
1 parent 985146a commit 1b73c3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/a11y/a11y.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const A11y = {
1919
return $el;
2020
},
2121
addElRoleDescription($el, description) {
22-
$el.attr('aria-role-description', description);
22+
$el.attr('aria-roledescription', description);
2323
return $el;
2424
},
2525
addElControls($el, controls) {

0 commit comments

Comments
 (0)