mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Merge pull request #3799
f7792b7
RemoteNodeList: fix qml warning (selsta)
This commit is contained in:
commit
4df925e8a8
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ ColumnLayout {
|
|||
anchors.fill: parent
|
||||
anchors.rightMargin: 80
|
||||
color: "transparent"
|
||||
property var trusted: remoteNodesModel.get(index).trusted
|
||||
property var trusted: remoteNodesModel.get(index) ? remoteNodesModel.get(index).trusted : false
|
||||
|
||||
MoneroComponents.TextPlain {
|
||||
id: addressText
|
||||
|
|
Loading…
Reference in a new issue