HomeKit controller config flow fixes (#21898)
* HomeKit controller config flow fixes * This does work if you have latest vol-serialize
This commit is contained in:
parent
9ab543ab3d
commit
b0d55d1946
2 changed files with 1 additions and 4 deletions
|
@ -237,9 +237,6 @@ class HomekitControllerFlowHandler(config_entries.ConfigFlow):
|
||||||
|
|
||||||
return self.async_show_form(
|
return self.async_show_form(
|
||||||
step_id='pair',
|
step_id='pair',
|
||||||
description_placeholders={
|
|
||||||
'model': self.model,
|
|
||||||
},
|
|
||||||
errors=errors,
|
errors=errors,
|
||||||
data_schema=vol.Schema({
|
data_schema=vol.Schema({
|
||||||
vol.Required('pairing_code'): vol.All(str, vol.Strip),
|
vol.Required('pairing_code'): vol.All(str, vol.Strip),
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pair": {
|
"pair": {
|
||||||
"title": "Pair with {{ model }}",
|
"title": "Pair with HomeKit Accessory",
|
||||||
"description": "Enter your HomeKit pairing code to use this accessory",
|
"description": "Enter your HomeKit pairing code to use this accessory",
|
||||||
"data": {
|
"data": {
|
||||||
"pairing_code": "Pairing Code"
|
"pairing_code": "Pairing Code"
|
||||||
|
|
Loading…
Add table
Reference in a new issue