Fix #216 Tax Percent Float limitation

This commit is contained in:
johnnyq 2021-12-14 11:58:17 -05:00
parent 4604280efe
commit f2763476a3
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
</div>
<div class="form-group">
<label>Percent <strong class="text-danger">*</strong></label>
<input type="number" min="0" class="form-control col-md-2" name="percent">
<input type="number" min="0" step="any" class="form-control col-md-4" name="percent">
</div>
</div>
<div class="modal-footer bg-white">

View File

@ -18,7 +18,7 @@
<div class="form-group">
<label>Percent <strong class="text-danger">*</strong></label>
<input type="number" min="0" class="form-control col-md-2" name="percent" value="<?php echo $tax_percent; ?>">
<input type="number" min="0" step="any" class="form-control col-md-4" name="percent" value="<?php echo $tax_percent; ?>">
</div>