Skip to content

Commit

Permalink
using force render value on loading card rendering as well
Browse files Browse the repository at this point in the history
  • Loading branch information
catdad committed Apr 10, 2024
1 parent 9d4819b commit 7c00c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/combined-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class CombinedCard extends LitElement implements LovelaceCard {
'align-items: center'
];

return html`<ha-card style="${style.join(';')}" class="loading">Loading...</ha-card>` as any as LovelaceCard;
return html`<ha-card render-id="${this._forceRender}" style="${style.join(';')}" class="loading">Loading...</ha-card>` as any as LovelaceCard;
}

private _createCard(config: LovelaceCardConfig): LovelaceCard {
Expand Down

0 comments on commit 7c00c32

Please sign in to comment.