fix(loading): screen readers no longer incorrectly announce spinner (#21116)

fixes #21107
This commit is contained in:
Liam DeBeasi
2020-04-23 12:07:43 -04:00
committed by GitHub
parent ae0a98924f
commit 63d8f6239c

View File

@ -196,7 +196,7 @@ export class Loading implements ComponentInterface, OverlayInterface {
<div class="loading-wrapper" role="dialog">
{spinner && (
<div class="loading-spinner">
<ion-spinner name={spinner} />
<ion-spinner name={spinner} aria-hidden="true" />
</div>
)}