Skip to content

Commit

Permalink
Merge pull request #262 from shanmukhdutt/inventory-count/#260-updated
Browse files Browse the repository at this point in the history
Fixed: pointer not visible on hovering over the card on upload page by adding button attribute on ion-card
  • Loading branch information
ymaheshwari1 authored Feb 12, 2024
2 parents e93886d + 4f99564 commit e939a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</ion-header>

<ion-content>
<ion-card v-for="product in uploadProducts" :key="product.productId" @click="viewProduct(product)">
<ion-card button v-for="product in uploadProducts" :key="product.productId" @click="viewProduct(product)">
<ion-item lines="none">
<ion-thumbnail slot="start">
<DxpShopifyImg :src="product.mainImageUrl" size="small"/>
Expand Down

0 comments on commit e939a04

Please sign in to comment.