sort Giftcards alphabetically (#469)

Serhii committed Aug 30, 2022 at 17:14 UTC 5fcbf3634be86f21186fe51fda43c687f963882e
1 file changed +1
lib/view_model/ionia/ionia_gift_cards_list_view_model.dart
+1
@@ -87,6 +87,7 @@ abstract class IoniaGiftCardsListViewModelBase with Store {
87
88 void _getMerchants() {
89 ioniaService.getMerchantsByFilter(categories: selectedFilters).then((value) {
90 + value.sort((a, b) => a.legalName.toLowerCase().compareTo(b.legalName.toLowerCase()));
91 ioniaMerchants = ioniaMerchantList = value;
92 });
93 }