Following are the template code and the error I get while creating the build although it works fine when I do ng serve.
<input type="text" class="form-control unit-price" name="unit_price" [(ngModel)]="item.unit_price" #unitPrice="ngModel" required>
<span class="small text-danger" *ngIf="!unitPrice?.valid && unitPrice?.touched ">Field is Required</span>
Any thing I am missing ?
Will I have to declare that property in component ?