Skip to content

Commit

Permalink
Merge pull request #233 from k2maan/preorder/#200
Browse files Browse the repository at this point in the history
Fixed: inconsistent shopfiy shop ordering through manually sorting the shopListings on the UI (#200)
  • Loading branch information
ravilodhi authored Oct 9, 2023
2 parents baa3b70 + 621be9a commit afca813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/catalog-product-details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
<ion-item v-if="!Object.keys(shopListings).length">
{{ $t('No shop listings found') }}
</ion-item>
<ion-item v-else v-for="(listData, index) in shopListings" :key="index">
<ion-item v-else v-for="(listData, index) in getSortedShopListings(shopListings)" :key="index">
<ion-label class="ion-text-wrap">
<h5>{{ listData.name }}</h5>
<!-- internationalized while preparation -->
Expand Down

0 comments on commit afca813

Please sign in to comment.