Here is my input which right now displays NaN if vehicle.total is null.
<input id="total" class="form-control" placeholder="Job Amount"
data-ng-model="vehicle.total" ng-pattern="/^[0-9]+(\.[0-9]{1,2})?$/"
value="vehicle.total" name="total"/>
How can I get the input to not display NaN and be empty instead?