We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a311bfc commit a3ec85bCopy full SHA for a3ec85b
src/material/form-field/form-field.html
@@ -101,6 +101,11 @@
101
>
102
@let subscriptMessageType = _getSubscriptMessageType();
103
104
+ <!--
105
+ Use a single permanent wrapper for both hints and errors so aria-live works correctly,
106
+ as having it appear post render will not consistently work. We also do not want to add
107
+ additional divs as it causes styling regressions.
108
+ -->
109
<div aria-atomic="true" aria-live="polite"
110
[class.mat-mdc-form-field-error-wrapper]="subscriptMessageType === 'error'"
111
[class.mat-mdc-form-field-hint-wrapper]="subscriptMessageType === 'hint'"
0 commit comments