Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added: store address and city with the store name in the select pickup store modal(#83) #86

Merged
merged 9 commits into from
Jun 25, 2024
6 changes: 5 additions & 1 deletion src/views/PickupLocationModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@
<ion-radio-group v-model="selectedFacility">
<ion-item v-for="store of nearbyStores" :key="store.facilityId">
<ion-radio :value="store">
<ion-label>{{ store.facilityName }}</ion-label>
<ion-label>
{{ store.facilityName }}
<p>{{ store.address1 }}</p>
<p>{{ store.city }}{{ store.city && store.state ? ", " : "" }}{{ store.state }}</p>
</ion-label>
<!-- Showing store distance in miles -->
<ion-label v-if="store.distance">{{ store.distance }} {{ $t("mi") }}</ion-label>
</ion-radio>
Expand Down
Loading