Skip to content
Snippets Groups Projects
Commit 29845b3d authored by Jonathan Sacksick's avatar Jonathan Sacksick Committed by Jonathan Sacksick
Browse files

Issue #2819041 by Daniel Korte, lisastreeter, jsacksick, Londova: Quantity limit in Shopping Cart.

parent 55956876
No related branches found
No related tags found
7 merge requests!418Issue #3511232 by ccjjmartin: Fix add to cart dropdown when only one non-default variation type is provided,!379Issue #3491248 Validation is breaking the amount number format decimal point,!375Issue #3413020 by czigor: Using a translatable string as a category for field...,!357Issue #2914933: Add service tags to order-related interfaces,!344Resolve #3107602 "Product attributes do not update visually when switching variations",!343Resolve #3107602 "Product attributes do not update visually when switching variations",!342Issue #3476581 by josephr5000: add OrderItemLabelEvent
......@@ -159,7 +159,9 @@ class EditQuantity extends FieldPluginBase {
'#default_value' => round($order_item->getQuantity(), $precision),
'#size' => 4,
'#min' => 0,
'#max' => 9999,
// Setting a higher value would result in a WSOD as it'd be out of
// range.
'#max' => 999999999,
'#step' => $step,
'#required' => TRUE,
'#attributes' => [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment