From 56cabeb4977addf6b336287f498b66c73ad937af Mon Sep 17 00:00:00 2001 From: Jay Turner Date: Wed, 29 May 2024 11:33:12 +0100 Subject: [PATCH] Fix `type` value on Interface for the energy-usage-graph (#20895) --- src/panels/lovelace/cards/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/lovelace/cards/types.ts b/src/panels/lovelace/cards/types.ts index 95efb79366..d68e05a42f 100644 --- a/src/panels/lovelace/cards/types.ts +++ b/src/panels/lovelace/cards/types.ts @@ -131,7 +131,7 @@ export interface EnergyDistributionCardConfig extends LovelaceCardConfig { collection_key?: string; } export interface EnergyUsageGraphCardConfig extends LovelaceCardConfig { - type: "energy-summary-graph"; + type: "energy-usage-graph"; title?: string; collection_key?: string; }