Skip to content

Commit

Permalink
Fixed: Enabled Everywhere on Card to Open Detail Page on Upload Page(h…
Browse files Browse the repository at this point in the history
  • Loading branch information
shanmukhdutt committed Dec 7, 2023
1 parent 2dce920 commit 1c1f41a
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">
<ion-card v-for="product in uploadProducts" :key="product.productId" @click="viewProduct(product)">
<ion-item lines="none">
<ion-thumbnail slot="start">
<ShopifyImg :src="product.mainImageUrl" size="small"/>
</ion-thumbnail>
<ion-label @click="viewProduct(product)">
<ion-label>
<p class="overline">{{ product.productName }}</p>
<h2>{{ product.sku }}</h2>
</ion-label>
Expand Down

0 comments on commit 1c1f41a

Please sign in to comment.