home-assistant / home-assistant/iOS
Data in textInputButtonTitle and textInputPlaceholder Does Not Appear in Actionable Notification
- Dominant language
- Swift
- Stars
- 2.4k
- Forks
- 520
- Avg merge
- 7h 27m
- Merged PRs (30d)
- 264
Description
**iOS device model, version and app version**
Model Name: iPhone 11 Pro Max
Software Version: 15.6
App version: 2022.3 (2022.358)
**Home Assistant Core Version**
2022.7.7
**Describe the bug**
Data in `textInputButtonTitle` and `textInputPlaceholder` does not appear in notification.
**To Reproduce**
```
script:
actionable_notifications:
alias: AN Testing
icon: mdi:cellphone-message
description: Testing AN
mode: queued
sequence:
- service: notify.mobile_app_phone
data:
message: "AN Testing"
data:
actions:
- action: "REPLY"
title: "Title Text"
textInputButtonTitle: "Button Title Text Input"
textInputPlaceholder: "Placeholder Text"
```
When running this script, the actionable notification fails to display the text in `textInputButtonTitle` and `textInputPlaceholder`
**Expected behavior**
Per the documentation, the data stored in these keys should appear in the notification. The text entered is, however, correctly passed back to the events bus:
```
...
"data": {
"action": "REPLY",
"reply_text": "Testing"
...
```
**Screenshots**


**Additional context**
This is the first time I've attempted to use these keys, so I don't know when this bug first appeared.
Contributor guide
Assessment
This issue has not been assessed yet.