Skip to content

Commit

Permalink
Merge pull request #594 from amansinghbais/#555-empty-state
Browse files Browse the repository at this point in the history
Improved: empty state message for no items in the draft detail page (#555)
  • Loading branch information
ymaheshwari1 authored Jan 9, 2025
2 parents a449183 + d16dd78 commit 99ebf21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/DraftDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<ion-icon slot="icon-only" :icon="isProductAvailableInCycleCount ? checkmarkCircle : addCircleOutline"/>
</ion-button>
</ion-item>
<p v-else-if="queryString">{{ translate("No items added to count") }}</p>
<p v-else-if="queryString">{{ translate("No product found") }}</p>
</div>

<hr />
Expand Down Expand Up @@ -137,7 +137,7 @@
</div>
</template>
<template v-else>
<p class="empty-state">{{ translate("No items found") }}</p>
<p class="empty-state">{{ translate("No items added to count") }}</p>
</template>
</template>
<template v-else>
Expand Down

0 comments on commit 99ebf21

Please sign in to comment.