From db4b7fe8cd18191b120c4172812514134709dc13 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Sat, 27 Aug 2022 13:55:35 +0200 Subject: [PATCH] Fix zwave device info data --- nymea-app/ui/system/zwave/ZWaveNetworkPage.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nymea-app/ui/system/zwave/ZWaveNetworkPage.qml b/nymea-app/ui/system/zwave/ZWaveNetworkPage.qml index a4563106..b82cb945 100644 --- a/nymea-app/ui/system/zwave/ZWaveNetworkPage.qml +++ b/nymea-app/ui/system/zwave/ZWaveNetworkPage.qml @@ -441,7 +441,7 @@ SettingsPageBase { } Label { Layout.fillWidth: true - text: nodeInfoDialog.node.isZWavePlus ? qsTr("Yes") : qsTr("No") + text: nodeInfoDialog.node.isZWavePlusDevice ? qsTr("Yes") : qsTr("No") font: Style.smallFont horizontalAlignment: Text.AlignRight } @@ -451,7 +451,7 @@ SettingsPageBase { } Label { Layout.fillWidth: true - text: nodeInfoDialog.node.isSecure ? qsTr("Yes") : qsTr("No") + text: nodeInfoDialog.node.isSecurityDevice ? qsTr("Yes") : qsTr("No") font: Style.smallFont horizontalAlignment: Text.AlignRight } @@ -461,7 +461,7 @@ SettingsPageBase { } Label { Layout.fillWidth: true - text: nodeInfoDialog.node.isBeaming ? qsTr("Yes") : qsTr("No") + text: nodeInfoDialog.node.isBeamingDevice ? qsTr("Yes") : qsTr("No") font: Style.smallFont horizontalAlignment: Text.AlignRight }