Skip to content

Commit 192f17e

Browse files
author
pennin
committed
fix: Replace aria-hidden attribute with inert attribute in <md-radio> component
1 parent 024d6d9 commit 192f17e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

radio/internal/radio.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class Radio extends radioBaseClass {
9999
protected override render() {
100100
const classes = {'checked': this.checked};
101101
return html`
102-
<div class="container ${classMap(classes)}" aria-hidden="true">
102+
<div class="container ${classMap(classes)}" inert">
103103
<md-ripple
104104
part="ripple"
105105
.control=${this}

0 commit comments

Comments
 (0)