Add missing flow_title to doorbird (#33557)

When placeholders are in use, flow_title needs to be
set in the json to prevent an empty name in the
integrations dashboard. This affected doorbirds
that were found via ssdp.
This commit is contained in:
J. Nick Koston
2020-04-02 23:02:50 -05:00
committed by GitHub
parent d98171ed05
commit d2cd557523
2 changed files with 4 additions and 2 deletions

View File

@@ -21,7 +21,8 @@
"title": "Connect to the DoorBird" "title": "Connect to the DoorBird"
} }
}, },
"title": "DoorBird" "title": "DoorBird",
"flow_title" : "DoorBird {name} ({host})"
}, },
"options": { "options": {
"step": { "step": {
@@ -33,4 +34,4 @@
} }
} }
} }
} }

View File

@@ -27,6 +27,7 @@
"not_doorbird_device": "This device is not a DoorBird" "not_doorbird_device": "This device is not a DoorBird"
}, },
"title" : "DoorBird", "title" : "DoorBird",
"flow_title" : "DoorBird {name} ({host})",
"error" : { "error" : {
"invalid_auth" : "Invalid authentication", "invalid_auth" : "Invalid authentication",
"unknown" : "Unexpected error", "unknown" : "Unexpected error",