Skip to content

Commit

Permalink
Added Pointer on Hover for Completed Items Icon
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitNamdev22 committed Oct 13, 2023
1 parent 8a97939 commit d9190b9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/views/PurchaseOrderDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@
<ion-text v-else color="medium" class="ion-margin-end">
{{ $t("COMPLETED: ITEM", { itemsCount: getPOItems('completed').length }) }}
</ion-text>
<ion-button fill="clear" >
<ion-icon v-if="getPOItems('completed').length" :icon="showCompletedItems ? eyeOutline : eyeOffOutline" @click="showCompletedItems = !showCompletedItems" />
</ion-button>
</ion-item>

<ion-card v-for="(item, index) in getPOItems('completed')" v-show="showCompletedItems && item.orderItemStatusId === 'ITEM_COMPLETED'" :key="index">
Expand Down

0 comments on commit d9190b9

Please sign in to comment.