We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2580ef3 commit f2350b4Copy full SHA for f2350b4
src/material/form-field/form-field.html
@@ -102,7 +102,7 @@
102
@let subscriptMessageType = _getSubscriptMessageType();
103
104
<div aria-atomic="true" aria-live="polite">
105
- @if (subscriptMessageType == 'error') {
+ @if (subscriptMessageType === 'error') {
106
<div
107
class="mat-mdc-form-field-error-wrapper"
108
[@transitionMessages]="_subscriptAnimationState"
@@ -112,7 +112,7 @@
112
}
113
</div>
114
115
- @if (subscriptMessageType == 'hint') {
+ @if (subscriptMessageType === 'hint') {
116
<div class="mat-mdc-form-field-hint-wrapper" [@transitionMessages]="_subscriptAnimationState">
117
@if (hintLabel) {
118
<mat-hint [id]="_hintLabelId">{{hintLabel}}</mat-hint>
0 commit comments