From e34155155ed9dc58e3a11d91fc1c5175b5cdeeac Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Tue, 20 Dec 2022 22:27:21 +0100 Subject: [PATCH] Fix rule action param editor with value from state --- nymea-app/ui/magic/SelectRuleActionParamsPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nymea-app/ui/magic/SelectRuleActionParamsPage.qml b/nymea-app/ui/magic/SelectRuleActionParamsPage.qml index a288be38..81d40ec4 100644 --- a/nymea-app/ui/magic/SelectRuleActionParamsPage.qml +++ b/nymea-app/ui/magic/SelectRuleActionParamsPage.qml @@ -165,7 +165,7 @@ Page { Layout.fillWidth: true text: thingId === null || stateTypeId === null ? qsTr("Select a state") - : dev.name + " - " + thing.thingClass.stateTypes.getStateType(stateTypeId).displayName + : thing.name + " - " + thing.thingClass.stateTypes.getStateType(stateTypeId).displayName visible: stateValueRadioButton.checked property var thingId: null