Skip to content

Commit f2350b4

Browse files
committed
fix(material/form-field): ===
1 parent 2580ef3 commit f2350b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/material/form-field/form-field.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
@let subscriptMessageType = _getSubscriptMessageType();
103103

104104
<div aria-atomic="true" aria-live="polite">
105-
@if (subscriptMessageType == 'error') {
105+
@if (subscriptMessageType === 'error') {
106106
<div
107107
class="mat-mdc-form-field-error-wrapper"
108108
[@transitionMessages]="_subscriptAnimationState"
@@ -112,7 +112,7 @@
112112
}
113113
</div>
114114

115-
@if (subscriptMessageType == 'hint') {
115+
@if (subscriptMessageType === 'hint') {
116116
<div class="mat-mdc-form-field-hint-wrapper" [@transitionMessages]="_subscriptAnimationState">
117117
@if (hintLabel) {
118118
<mat-hint [id]="_hintLabelId">{{hintLabel}}</mat-hint>

0 commit comments

Comments
 (0)