Browse Source

qml: (trivial) fix warning in NetworkOverview.qml

10.95 | W | gui.qml.qeapp | file:///home/user/wspace/electrum/electrum/gui/qml/components/NetworkOverview.qml:220:25: Unable to assign [undefined] to QString
master
SomberNight 3 years ago
parent
commit
faa53c71da
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qml/components/NetworkOverview.qml

2
electrum/gui/qml/components/NetworkOverview.qml

@ -216,7 +216,7 @@ Pane {
}
Label {
visible: 'mode' in Network.proxy
text: Network.isProxyTor ? 'TOR' : Network.proxy['mode']
text: Network.isProxyTor ? 'TOR' : (Network.proxy['mode'] || '')
}
}

Loading…
Cancel
Save