mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 13:41:09 -04:00 
			
		
		
		
	fix: make min quantity 0 instead of 1
This commit is contained in:
		| @ -53,7 +53,7 @@ | ||||
|                 :content-loading="loading" | ||||
|                 type="number" | ||||
|                 small | ||||
|                 min="1" | ||||
|                 min="0" | ||||
|                 step="any" | ||||
|                 @change="syncItemToStore()" | ||||
|                 @input="v$.quantity.$touch()" | ||||
| @ -352,7 +352,7 @@ const rules = { | ||||
|     required: helpers.withMessage(t('validation.required'), required), | ||||
|     minValue: helpers.withMessage( | ||||
|       t('validation.qty_must_greater_than_zero'), | ||||
|       minValue(1) | ||||
|       minValue(0) | ||||
|     ), | ||||
|     maxLength: helpers.withMessage( | ||||
|       t('validation.amount_maxlength'), | ||||
|  | ||||
		Reference in New Issue
	
	Block a user