(forms/fields) Fix: Example of form field where both label and placeholder don't work correctly

This commit is contained in:
Sercan Yemen 2024-06-03 10:16:39 +03:00
parent a190f6b54b
commit bcb780a6ac

View File

@ -161,7 +161,11 @@
<mat-label>Label</mat-label>
<input matInput />
</mat-form-field>
<mat-form-field [ngClass]="formFieldHelpers" class="w-full">
<mat-form-field
[ngClass]="formFieldHelpers"
class="w-full"
floatLabel="always"
>
<mat-label>Label and Placeholder</mat-label>
<input matInput [placeholder]="'Placeholder'" />
</mat-form-field>