Skip to content

Commit

Permalink
Revert "Fixed: Enabled Everywhere on Card to Open Detail Page on Uplo…
Browse files Browse the repository at this point in the history
…ad Page(hotwax#209)"

This reverts commit 1c1f41a.
  • Loading branch information
shanmukhdutt committed Dec 8, 2023
1 parent 93cb6e4 commit 88bfe5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
</ion-header>

<ion-content>
<ion-card v-for="product in uploadProducts" :key="product.productId" @click="viewProduct(product)">
<ion-card v-for="product in uploadProducts" :key="product.productId">
<ion-item lines="none">
<ion-thumbnail slot="start">
<ShopifyImg :src="product.mainImageUrl" size="small"/>
</ion-thumbnail>
<ion-label>
<ion-label @click="viewProduct(product)">
<p class="overline">{{ product.productName }}</p>
<h2>{{ product.sku }}</h2>
</ion-label>
Expand Down

0 comments on commit 88bfe5e

Please sign in to comment.