From c702eb4a165886149dc24e99e6315c9bb40405dd Mon Sep 17 00:00:00 2001 From: omair saleh Date: Mon, 5 Oct 2020 14:46:29 +0800 Subject: [PATCH] change input from text to number --- resources/assets/js/components/NewInvoice.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/assets/js/components/NewInvoice.vue b/resources/assets/js/components/NewInvoice.vue index b0b1c5d8..3592b628 100644 --- a/resources/assets/js/components/NewInvoice.vue +++ b/resources/assets/js/components/NewInvoice.vue @@ -168,7 +168,7 @@ 'is-valid': !$v.form.addLine.quantity.$invalid && $v.form.addLine.quantity.$dirty }" :disabled="!editable" - type="number" + type="text" min="1" class="form-control" name="quantity" @@ -188,7 +188,7 @@ 'is-valid': !$v.form.addLine.unit_price_rmb.$invalid && $v.form.addLine.unit_price_rmb.$dirty }" :disabled="!editable" - type="number" + type="text" min="0" name="rmb-unit-price" class="form-control" @@ -208,7 +208,7 @@ 'is-valid': !$v.form.addLine.unit_price_rm.$invalid && $v.form.addLine.unit_price_rm.$dirty }" :disabled="!editable" - type="number" + type="text" min="0" name="rm-unit-price" class="form-control" @@ -223,7 +223,7 @@