Skip to content

Commit

Permalink
fix: Replace aria-hidden attribute with inert attribute in <md-radio>…
Browse files Browse the repository at this point in the history
… component
  • Loading branch information
pennin committed Aug 23, 2024
1 parent 024d6d9 commit 192f17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radio/internal/radio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class Radio extends radioBaseClass {
protected override render() {
const classes = {'checked': this.checked};
return html`
<div class="container ${classMap(classes)}" aria-hidden="true">
<div class="container ${classMap(classes)}" inert">
<md-ripple
part="ripple"
.control=${this}
Expand Down

0 comments on commit 192f17e

Please sign in to comment.