mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-20 07:46:37 +00:00
Fix zwave config flow (#14001)
This commit is contained in:
parent
ed54c70e75
commit
af93ec1b92
@ -207,10 +207,10 @@ class HaDomainIntegrations extends LitElement {
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
(domain === this.domain &&
|
(domain === this.domain &&
|
||||||
!this.integration!.config_flow &&
|
(!this.integration!.integrations ||
|
||||||
(!this.integration!.integrations?.[domain] ||
|
!(domain in this.integration!.integrations)) &&
|
||||||
!this.integration!.integrations[domain].config_flow)) ||
|
!this.integration!.config_flow) ||
|
||||||
!this.integration!.integrations?.[domain]?.config_flow
|
this.integration!.integrations?.[domain]?.config_flow === false
|
||||||
) {
|
) {
|
||||||
const manifest = await fetchIntegrationManifest(this.hass, domain);
|
const manifest = await fetchIntegrationManifest(this.hass, domain);
|
||||||
showAlertDialog(this, {
|
showAlertDialog(this, {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user