From 5d124405628b44a9ff58dc60b9e710567e720bc4 Mon Sep 17 00:00:00 2001 From: Cuteivist Date: Mon, 21 Oct 2024 12:26:14 +0200 Subject: [PATCH] fix; Update default sorting for assets and collectibles (#16552) --- ui/app/AppLayouts/Wallet/views/RightTabView.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Wallet/views/RightTabView.qml b/ui/app/AppLayouts/Wallet/views/RightTabView.qml index 39176f20e5..6b08a0eef5 100644 --- a/ui/app/AppLayouts/Wallet/views/RightTabView.qml +++ b/ui/app/AppLayouts/Wallet/views/RightTabView.qml @@ -204,7 +204,7 @@ RightTabBaseView { settings.category = settingsCategoryName walletSettings.sync() settings.sync() - let value = SortOrderComboBox.TokenOrderAlpha + let value = SortOrderComboBox.TokenOrderBalance if (walletSettings.assetsViewCustomOrderApplyTimestamp > settings.sortOrderUpdateTimestamp && customOrderAvailable) { value = SortOrderComboBox.TokenOrderCustom } else { @@ -326,7 +326,7 @@ RightTabBaseView { settings.category = settingsCategoryName walletSettings.sync() settings.sync() - let value = SortOrderComboBox.TokenOrderAlpha + let value = SortOrderComboBox.TokenOrderBalance if (walletSettings.collectiblesViewCustomOrderApplyTimestamp > settings.sortOrderUpdateTimestamp && customOrderAvailable) { value = SortOrderComboBox.TokenOrderCustom } else {