mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-24 13:32:22 +00:00
fix: Collapse / expand section header icons in collectibles view
- use the right icons for collapsed/expanded state (this should probably use the existing `FoldableHeader` component) Fixes #13774
This commit is contained in:
parent
07ac4eb8a6
commit
418d6bcc35
@ -400,7 +400,7 @@ ColumnLayout {
|
||||
|
||||
checkable: true
|
||||
size: StatusBaseButton.Size.Small
|
||||
icon.name: checked ? "chevron-down" : "next"
|
||||
icon.name: checked ? "next" : "chevron-down"
|
||||
textColor: Theme.palette.baseColor1
|
||||
textHoverColor: Theme.palette.directColor1
|
||||
|
||||
@ -505,7 +505,7 @@ ColumnLayout {
|
||||
onTriggered: root.manageTokensRequested()
|
||||
}
|
||||
StatusAction {
|
||||
enabled: symbol !== "ETH"
|
||||
enabled: symbol !== Constants.ethToken
|
||||
type: StatusAction.Type.Danger
|
||||
icon.name: "hide"
|
||||
text: qsTr("Hide collectible")
|
||||
|
Loading…
x
Reference in New Issue
Block a user