Spaces:
Sleeping
Sleeping
Update templates/cart.html
Browse files- templates/cart.html +1 -1
templates/cart.html
CHANGED
@@ -135,7 +135,7 @@
|
|
135 |
<!-- Decrease button -->
|
136 |
<button onclick="updateQuantity('decrease', '{{ item.Name }}', '{{ customer_email }}')">-</button>
|
137 |
<!-- Quantity input field -->
|
138 |
-
<input type="text" value="{{ item.Quantity__c }}" readonly data-item-name="{{ item.Name }}">
|
139 |
<!-- Increase button -->
|
140 |
<button onclick="updateQuantity('increase', '{{ item.Name }}', '{{ customer_email }}')">+</button>
|
141 |
</div>
|
|
|
135 |
<!-- Decrease button -->
|
136 |
<button onclick="updateQuantity('decrease', '{{ item.Name }}', '{{ customer_email }}')">-</button>
|
137 |
<!-- Quantity input field -->
|
138 |
+
<input type="text" value="{{ item.Quantity__c | int }}" readonly data-item-name="{{ item.Name }}">
|
139 |
<!-- Increase button -->
|
140 |
<button onclick="updateQuantity('increase', '{{ item.Name }}', '{{ customer_email }}')">+</button>
|
141 |
</div>
|