mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	fix: allow 0 value for quantity
This commit is contained in:
		| @ -53,7 +53,7 @@ | ||||
|                 :content-loading="loading" | ||||
|                 type="number" | ||||
|                 small | ||||
|                 min="0.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(0.1) | ||||
|       minValue(0) | ||||
|     ), | ||||
|     maxLength: helpers.withMessage( | ||||
|       t('validation.amount_maxlength'), | ||||
|  | ||||
		Reference in New Issue
	
	Block a user