diff options
| author | selsta <selsta@sent.at> | 2021-12-13 04:33:15 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-12-13 04:33:32 +0100 |
| commit | f7792b72bf83cf0f69c0ba1f527d962f91c14baa (patch) | |
| tree | e5f16738ad66d9b8cf47991ee441d8ea13c20e12 /components | |
| parent | bddb9b0050ee086da5c7ee7fdb3627e0dff9f179 (diff) | |
| download | monzero-gui-f7792b72bf83cf0f69c0ba1f527d962f91c14baa.tar.gz monzero-gui-f7792b72bf83cf0f69c0ba1f527d962f91c14baa.tar.xz monzero-gui-f7792b72bf83cf0f69c0ba1f527d962f91c14baa.zip | |
RemoteNodeList: fix qml warning
Diffstat (limited to 'components')
| -rw-r--r-- | components/RemoteNodeList.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/RemoteNodeList.qml b/components/RemoteNodeList.qml index 61bc7dac..cbb2a02e 100644 --- a/components/RemoteNodeList.qml +++ b/components/RemoteNodeList.qml @@ -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 |
