Skip to content

Commit

Permalink
Improved: conditions for rendering pickers empty state (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais authored and ravilodhi committed Jul 9, 2024
1 parent 6a76fa0 commit 38f4019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/EditPickersModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<ion-spinner name="crescent" />
<ion-label>{{ translate("Fetching pickers") }}</ion-label>
</div>
<div class="empty-state" v-if="!pickers.length">
<div class="empty-state" v-else-if="!pickers.length">
{{ 'No picker found' }}
</div>
<div v-else>
Expand Down

0 comments on commit 38f4019

Please sign in to comment.