feat(activity): temporarily hide filter from Activity tab
This commit is contained in:
parent
15f047f0c0
commit
96883c39e4
|
@ -149,6 +149,7 @@ RightTabBaseView {
|
||||||
icon.color: checked ? Theme.palette.primaryColor1 : Theme.palette.baseColor1
|
icon.color: checked ? Theme.palette.primaryColor1 : Theme.palette.baseColor1
|
||||||
Behavior on icon.color { ColorAnimation { duration: 200; easing.type: Easing.InOutQuad } }
|
Behavior on icon.color { ColorAnimation { duration: 200; easing.type: Easing.InOutQuad } }
|
||||||
highlighted: checked
|
highlighted: checked
|
||||||
|
visible: walletTabBar.currentIndex !== 2 // TODO #16761: Re-enable filter for activity when implemented
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loader {
|
Loader {
|
||||||
|
@ -429,7 +430,7 @@ RightTabBaseView {
|
||||||
communitiesStore: root.communitiesStore
|
communitiesStore: root.communitiesStore
|
||||||
currencyStore: root.sharedRootStore.currencyStore
|
currencyStore: root.sharedRootStore.currencyStore
|
||||||
showAllAccounts: RootStore.showAllAccounts
|
showAllAccounts: RootStore.showAllAccounts
|
||||||
filterVisible: filterButton.checked
|
filterVisible: false // TODO #16761: Re-enable filter for activity when implemented
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue