Skip to content

Commit

Permalink
fix(a11y): correct aria-roledescription attribute name
Browse files Browse the repository at this point in the history
fixes #4371
  • Loading branch information
nolimits4web committed Mar 26, 2021
1 parent 985146a commit 1b73c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/a11y/a11y.js
Expand Up @@ -19,7 +19,7 @@ const A11y = {
return $el;
},
addElRoleDescription($el, description) {
$el.attr('aria-role-description', description);
$el.attr('aria-roledescription', description);
return $el;
},
addElControls($el, controls) {
Expand Down

0 comments on commit 1b73c3b

Please sign in to comment.