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:
Lukáš Tinkl 2024-03-05 18:15:08 +01:00 committed by Lukáš Tinkl
parent 07ac4eb8a6
commit 418d6bcc35
1 changed files with 2 additions and 2 deletions

View File

@ -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")