I'm having some issues setting up actionable notifications that open a custom Dashboard. I had it working and now for some reason it has stopped - I don't know if the most recent update to HA has broken something, but feel like if it was a common issue there would be more noise about it
What I'm trying to do:
I have an automation set up so that when a camera detects motion is sends a notification to our devices, including a snapshot of the camera. What I want it to do when the notification is tapped on is to open a custom dashboard, which only has a picture entity card on it showing the camera feed, so that we can check the camera feed.
What I've Tried:
As mentioned above - I did have this working on the initial setup but now it seems to have stopped - now it only opens the HA Companion App but doesn't navigate to the dashboard. I don't know if the latest HA update has broken something or if some other change I have made has broken it.
The YAML I have in the automation currently is below, noting that this has been created using the automations UI:
actions:
- action: notify.mobile_app_christophers_iphone
metadata: {}
data:
message: TEST
data:
entity-id: camera.backyard_camera_stream_low
clickAction: /lovelace/new-camera```
Other setups I've tried:
* Creating the notifications using the script [here](https://github.com/Grumblezz/Home-Assistant-Notify-Mobile-Companion-App-Devices?tab=readme-ov-file)
* Changing the clickAction to a uri
* Changing the relative link to a link using the full home assistant url path, both local and remote (using Home Assistant Cloud
Remote Path)
* Rebooting
* Creating a new dashboard and trying to link to that instead
* Uninstalling and reinstalling and clearing caches in Companion Apps
All with no change.
Is this something anyone has seen before, do you have any ideas on how to fix, or is this genuinely an issue with HA that will hopefully be fixed in a future update?