H
HASS.Agent13mo ago
Kiwi

Bug with actionable notifications

These should be working but I'm getting no title showing
No description
No description
Solution:
There should not be a second dash at the title entry
Jump to solution
2 Replies
Solution
DrR0x
DrR0x13mo ago
There should not be a second dash at the title entry
DrR0x
DrR0x13mo ago
message: Core has an update available
title: Home Assistant
data:
actions:
- action: test
title: HEY
message: Core has an update available
title: Home Assistant
data:
actions:
- action: test
title: HEY
This is a general yaml issue. When there is a dash it indicates a new entry, so in this case the new entry is of action test and then you can specify properties of that entry without a dash. So the title. This is working as intended on hass.agent side because it sees a test notification action and displays it, because there is no title passed to it there is just a blank action button. The next entry is title: HEY(because of the dash) which is not a valid entry so it skips it.

Did you find this page helpful?