Skip to content

Commit

Permalink
Merge pull request #292 from Ridwan6947/#291
Browse files Browse the repository at this point in the history
Fixed: Added a horizontal line between product store and facility and removed line from the last (#291)
  • Loading branch information
ymaheshwari1 authored Jul 30, 2024
2 parents b6574bf + 71cd662 commit 528bd1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/FindGroups.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@
<ion-icon :icon="ellipsisVerticalOutline" slot="icon-only"/>
</ion-button>
</ion-item>
<ion-item :lines="group.description ? 'inset' : 'none'">
<ion-item>
<ion-icon :icon="bagHandleOutline" slot="start"/>
<ion-label>{{ translate('Product stores') }}</ion-label>
<ion-chip outline slot="end" @click="openAddProductStoreToGroupModal(group)">
{{ group.productStoreCount || 0 }}
</ion-chip>
</ion-item>
<ion-item>
<ion-item :lines="group.description ? 'inset' : 'none'">
<ion-icon :icon="businessOutline" slot="start"/>
<ion-label>{{ translate('Facilities') }}</ion-label>
<ion-chip outline slot="end" @click="openGroupActionsPopover($event, group)">
{{ group.facilityCount }}
</ion-chip>
</ion-item>
<ion-item lines="full" v-if="group.description">
<ion-item v-if="group.description" lines="none">
<ion-label>{{ group.description }}</ion-label>
</ion-item>
</ion-card>
Expand Down

0 comments on commit 528bd1f

Please sign in to comment.