Skip to content

Commit

Permalink
Merge pull request #286 from shanmukhdutt/receiving-271
Browse files Browse the repository at this point in the history
Implemented: Added Pointer on Hover for Completed items icon(#271)
  • Loading branch information
ravilodhi authored Dec 14, 2023
2 parents 252b049 + a62fd74 commit 069c56f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 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-icon v-if="getPOItems('completed').length" :icon="showCompletedItems ? eyeOutline : eyeOffOutline" @click="showCompletedItems = !showCompletedItems" />
<ion-button v-if="getPOItems('completed').length" @click="showCompletedItems = !showCompletedItems" fill="clear">
<ion-icon :icon="showCompletedItems ? eyeOutline : eyeOffOutline"/>
</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 069c56f

Please sign in to comment.