mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
RemoteNodeList: fix qml warning
This commit is contained in:
parent
bddb9b0050
commit
f7792b72bf
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ ColumnLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.rightMargin: 80
|
anchors.rightMargin: 80
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
property var trusted: remoteNodesModel.get(index).trusted
|
property var trusted: remoteNodesModel.get(index) ? remoteNodesModel.get(index).trusted : false
|
||||||
|
|
||||||
MoneroComponents.TextPlain {
|
MoneroComponents.TextPlain {
|
||||||
id: addressText
|
id: addressText
|
||||||
|
|
Loading…
Reference in a new issue