From 77d59cd8923f4b60f3baefc5e1825ce4e886a710 Mon Sep 17 00:00:00 2001 From: Dario Gabriel Lipicar Date: Fri, 15 Nov 2024 02:25:18 -0300 Subject: [PATCH] feat(activity): temporarily hide filter from Activity tab --- ui/app/AppLayouts/Wallet/views/RightTabView.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Wallet/views/RightTabView.qml b/ui/app/AppLayouts/Wallet/views/RightTabView.qml index 5a4f8a22a6..75ea99bb86 100644 --- a/ui/app/AppLayouts/Wallet/views/RightTabView.qml +++ b/ui/app/AppLayouts/Wallet/views/RightTabView.qml @@ -149,6 +149,7 @@ RightTabBaseView { icon.color: checked ? Theme.palette.primaryColor1 : Theme.palette.baseColor1 Behavior on icon.color { ColorAnimation { duration: 200; easing.type: Easing.InOutQuad } } highlighted: checked + visible: walletTabBar.currentIndex !== 2 // TODO #16761: Re-enable filter for activity when implemented } } Loader { @@ -429,7 +430,7 @@ RightTabBaseView { communitiesStore: root.communitiesStore currencyStore: root.sharedRootStore.currencyStore showAllAccounts: RootStore.showAllAccounts - filterVisible: filterButton.checked + filterVisible: false // TODO #16761: Re-enable filter for activity when implemented } } }