RemoteNodeList: fix qml warning

This commit is contained in:
selsta 2021-12-13 04:33:15 +01:00
parent bddb9b0050
commit f7792b72bf
No known key found for this signature in database
GPG key ID: 2EA0A99A8B07AE5E

View file

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