File tree Expand file tree Collapse file tree
view/frontend/templates/component Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ $loaderImage = $block->getViewFileUrl('images/loader-2.gif');
1515 type="button"
1616 id="btn-minicart-close"
1717 class="action close"
18- @click="closeContent"
18+ @click.prevent ="closeContent"
1919 title="Close">
2020 <span>Close</span>
2121 </button>
@@ -63,7 +63,7 @@ $loaderImage = $block->getViewFileUrl('images/loader-2.gif');
6363 <div class="primary">
6464 <button id="top-cart-btn-checkout" type="button"
6565 class="action primary checkout"
66- @click="proceedToCheckout"
66+ @click.prevent ="proceedToCheckout"
6767 title="<?= $ escaper ->escapeHtml (
6868 __ ('Proceed to Checkout ' )
6969 ) ?> "
@@ -135,7 +135,7 @@ $loaderImage = $block->getViewFileUrl('images/loader-2.gif');
135135 <button class="update-cart-item"
136136 :data-cart-item-id="item.item_id"
137137 style="display:none"
138- @click="updateCartItemQty"
138+ @click.prevent ="updateCartItemQty"
139139 title="<?= $ escaper ->escapeHtml (
140140 __ ('Update ' )
141141 ) ?> ">
@@ -160,7 +160,7 @@ $loaderImage = $block->getViewFileUrl('images/loader-2.gif');
160160 </a>
161161 </div>
162162 <div class="secondary">
163- <a @click="removeCartItem"
163+ <a @click.prevent ="removeCartItem"
164164 class="action delete"
165165 :data-cart-item="item.item_id"
166166 title="<?= $ escaper ->escapeHtml (
You can’t perform that action at this time.
0 commit comments