Skip to content

Commit

Permalink
Improved: Display Product Store ID instead of Store Name when Store N…
Browse files Browse the repository at this point in the history
…ame is not present.(#323)
  • Loading branch information
priyanshee1604 committed Jan 16, 2025
1 parent 1d26456 commit ef588a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/FindFacilities.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<ion-icon :icon="globeOutline" slot="start" />
<ion-select :label="translate('Product Store')" interface="popover" v-model="query.productStoreId" @ionChange="updateQuery()">
<ion-select-option value="">{{ translate("All") }}</ion-select-option>
<ion-select-option :value="productStore.productStoreId" :key="index" v-for="(productStore, index) in productStores">{{ productStore.storeName }}</ion-select-option>
<ion-select-option :value="productStore.productStoreId" :key="index" v-for="(productStore, index) in productStores">{{ productStore.storeName? productStore.storeName: productStore.productStoreId }}</ion-select-option>
</ion-select>
</ion-item>
<ion-item lines="none">
Expand Down

0 comments on commit ef588a1

Please sign in to comment.