From 768344c3f7fa38bd7304c1c866c2974125e6e268 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 22 Oct 2023 22:05:26 -1000 Subject: [PATCH] Fix double load of lovelace resources (#18332) --- src/panels/lovelace/ha-panel-lovelace.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/lovelace/ha-panel-lovelace.ts b/src/panels/lovelace/ha-panel-lovelace.ts index c1dbe2ed3e..b011049ea1 100644 --- a/src/panels/lovelace/ha-panel-lovelace.ts +++ b/src/panels/lovelace/ha-panel-lovelace.ts @@ -229,7 +229,7 @@ export class LovelacePanel extends LitElement { } if (!resourcesLoaded) { resourcesLoaded = true; - (llWindow.llConfProm || fetchResources(this.hass!.connection)).then( + (llWindow.llResProm || fetchResources(this.hass!.connection)).then( (resources) => loadLovelaceResources(resources, this.hass!.auth.data.hassUrl) );