mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
fix(inputs): fix aria with shadow-dom (#16329)
This commit is contained in:
@ -323,7 +323,7 @@ export class Alert implements ComponentInterface, OverlayInterface {
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => this.cbClick(i)}
|
||||
aria-checked={i.checked ? 'true' : null}
|
||||
aria-checked={`${i.checked}`}
|
||||
id={i.id}
|
||||
disabled={i.disabled}
|
||||
tabIndex={0}
|
||||
@ -356,7 +356,7 @@ export class Alert implements ComponentInterface, OverlayInterface {
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => this.rbClick(i)}
|
||||
aria-checked={i.checked ? 'true' : null}
|
||||
aria-checked={`${i.checked}`}
|
||||
disabled={i.disabled}
|
||||
id={i.id}
|
||||
tabIndex={0}
|
||||
|
Reference in New Issue
Block a user