Fix malformed user input error on MJPEG config flow (#108058)
This commit is contained in:
parent
dd2527db5b
commit
5cc1a761dd
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ def async_get_schema(
|
||||||
|
|
||||||
if show_name:
|
if show_name:
|
||||||
schema = {
|
schema = {
|
||||||
vol.Optional(CONF_NAME, default=defaults.get(CONF_NAME)): str,
|
vol.Required(CONF_NAME, default=defaults.get(CONF_NAME)): str,
|
||||||
**schema,
|
**schema,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue