Corrected example automation (#8726)

The trigger in the example automation contained the line 'data:' below the event_data, which is redundant.
If used this way the automation triggers on any iOS action and ignores the actionName.
This commit is contained in:
Jan Olbrecht 2019-02-25 12:27:57 +01:00 committed by Franck Nijhof
parent 708f1675df
commit 342000f8f2

View File

@ -132,8 +132,7 @@ automation:
platform: event
event_type: ios.notification_action_fired
event_data:
data:
actionName: SOUND_ALARM
actionName: SOUND_ALARM
action:
...
```