fix(AssetsDetailView): fixed warning
This commit is contained in:
parent
28ca3bd075
commit
dd08cb60c2
|
@ -100,7 +100,7 @@ Item {
|
|||
Layout.fillWidth: true
|
||||
Layout.fillHeight: true
|
||||
onGoBack: stack.currentIndex = 0
|
||||
visible: (stack.currentTabIndex === 2)
|
||||
visible: (stack.currentIndex === 2)
|
||||
}
|
||||
TransactionDetailView {
|
||||
id: transactionDetailView
|
||||
|
|
|
@ -33,7 +33,7 @@ Item {
|
|||
{text: qsTr("1Y"), enabled: true}, {text: qsTr("ALL"), enabled: true}]
|
||||
|
||||
property var simTimer: Timer {
|
||||
running: true
|
||||
running: root.visible
|
||||
interval: 3000
|
||||
repeat: true
|
||||
onTriggered: {
|
||||
|
|
Loading…
Reference in New Issue