Subbu1304 commited on
Commit
5725c17
·
verified ·
1 Parent(s): ae11efd

Update templates/cart.html

Browse files
Files changed (1) hide show
  1. 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>