From 65f02533079bf3f37c687197998df1d0ff38a7d8 Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Sun, 3 Jan 2021 16:22:58 +0100 Subject: [PATCH] Fixed product form min tare weight --- views/productform.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/productform.blade.php b/views/productform.blade.php index 6daec37f..144ed05e 100644 --- a/views/productform.blade.php +++ b/views/productform.blade.php @@ -314,7 +314,7 @@ @include('components.numberpicker', array( 'id' => 'tare_weight', 'label' => 'Tare weight', - 'min' => $DEFAULT_MIN_AMOUNT, + 'min' => 0, 'decimals' => $userSettings['stock_decimal_places_amounts'], 'value' => $value, 'additionalAttributes' => $additionalAttributes,