Merge PR #390: Fix event inidication LED in things details page

This commit is contained in:
Jenkins nymea 2020-07-06 14:21:25 +02:00
commit 5a6a006225

View File

@ -432,7 +432,9 @@ DevicePageBase {
Connections {
target: root.device
onEventTriggered: {
flashlightAnimation.start();
if (eventTypeId === eventComponentItem.eventType.id) {
flashlightAnimation.start();
}
}
}
}