I am creating a dropdown to filter data so I have created a dropdown
<form #filter="ngForm" (ngSubmit)="filterta(filter)" style="display: flex;">
<select ngModel #month="ngModel" name="month" required >
<option [ngValue]="null" [disabled]="true" >All</option>
<option value="1">January</option>
</select>
</form>
when i remove ngModel #month="ngModel"
these properties form select tag it shows placeholder option All and when i add these properties it shows Blank in Placeholder .