Skip to content

Commit

Permalink
Merge pull request #295 from amansinghbais/receiving/#271
Browse files Browse the repository at this point in the history
Improved: code for enhancement of completed items icon (#271)
  • Loading branch information
ymaheshwari1 authored Feb 21, 2024
2 parents 9cb9db2 + 74a4001 commit 9bc2ff0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/PurchaseOrderDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@
<ion-text v-else color="medium" class="ion-margin-end">
{{ translate("Completed: item", { itemsCount: getPOItems('completed').length }) }}
</ion-text>
<ion-button v-if="getPOItems('completed').length" @click="showCompletedItems = !showCompletedItems" fill="clear">
<ion-icon :icon="showCompletedItems ? eyeOutline : eyeOffOutline"/>
<ion-button v-if="getPOItems('completed').length" @click="showCompletedItems = !showCompletedItems" color="medium" fill="clear">
<ion-icon :icon="showCompletedItems ? eyeOutline : eyeOffOutline" slot="icon-only" />
</ion-button>
</ion-item>

Expand Down

0 comments on commit 9bc2ff0

Please sign in to comment.