Fix event inidication

This commit is contained in:
Michael Zanetti 2020-06-16 15:07:12 +02:00
parent 2fd696eae5
commit 953dd6a329

View File

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