Skip to content

Commit

Permalink
fix: revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
felixw committed Nov 21, 2023
1 parent 5042101 commit 6d57ccb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ export class RadioButton {
/>
<label htmlFor={this.inputId}>{this.label}</label>
{!!this.helperText && (
<span
<div
class="radio-button__meta"
id={helperTextId}
aria-live="polite"
aria-relevant="additions removals"
>
{this.renderHelperIcon()}
<span class="radio-button__helper-text">{this.helperText}</span>
</span>
<div class="radio-button__helper-text">{this.helperText}</div>
</div>
)}
</div>
</Host>
Expand Down

0 comments on commit 6d57ccb

Please sign in to comment.