Skip to content

Commit

Permalink
Fix double load of lovelace resources (#18332)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Oct 23, 2023
1 parent 03a21d5 commit 768344c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panels/lovelace/ha-panel-lovelace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);
Expand Down

0 comments on commit 768344c

Please sign in to comment.