From aac463b34d299dc47dc40a5ad2e2bd71971af76d Mon Sep 17 00:00:00 2001 From: Petar Petrov Date: Fri, 23 Jan 2026 17:28:42 +0100 Subject: [PATCH] Update minimum power threshold to 1 W in power sankey (#29148) --- src/panels/lovelace/cards/energy/hui-power-sankey-card.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/lovelace/cards/energy/hui-power-sankey-card.ts b/src/panels/lovelace/cards/energy/hui-power-sankey-card.ts index c65beaa3d1..5b186de96c 100644 --- a/src/panels/lovelace/cards/energy/hui-power-sankey-card.ts +++ b/src/panels/lovelace/cards/energy/hui-power-sankey-card.ts @@ -28,7 +28,7 @@ const DEFAULT_CONFIG: Partial = { }; // Minimum power threshold in watts (W) to display a device node -const MIN_POWER_THRESHOLD = 10; +const MIN_POWER_THRESHOLD = 1; interface PowerData { solar: number;