From 762670f8b63ffb1b9f11fc3eec705414e9d8ba70 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Tue, 10 Aug 2021 23:16:18 +0200 Subject: [PATCH] Fix value display for event descriptors with multiple params --- nymea-app/ui/magic/EventDescriptorDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nymea-app/ui/magic/EventDescriptorDelegate.qml b/nymea-app/ui/magic/EventDescriptorDelegate.qml index 586b7de7..ff48cc78 100644 --- a/nymea-app/ui/magic/EventDescriptorDelegate.qml +++ b/nymea-app/ui/magic/EventDescriptorDelegate.qml @@ -96,7 +96,7 @@ NymeaSwipeDelegate { ret += " " + qsTr("and %1 %2 %3") .arg(paramType.displayName) .arg(operatorString) - .arg(model.value) + .arg(paramDescriptor.value) } }