mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 04:12:59 +00:00
Allow decimal amounts in general for the shopping list
This commit is contained in:
@@ -51,9 +51,10 @@
|
||||
'id' => 'amount',
|
||||
'label' => 'Amount',
|
||||
'hintId' => 'amount_qu_unit',
|
||||
'min' => 0,
|
||||
'min' => 0.01,
|
||||
'step' => 0.01,
|
||||
'value' => $value,
|
||||
'invalidFeedback' => $__t('The amount cannot be lower than %s', '1')
|
||||
'invalidFeedback' => $__t('The amount cannot be lower than %s', '0.01')
|
||||
))
|
||||
|
||||
<div class="form-group">
|
||||
|
Reference in New Issue
Block a user