1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-15 07:25:54 +00:00

Update minimum power threshold to 1 W in power sankey (#29148)

This commit is contained in:
Petar Petrov
2026-01-23 17:28:42 +01:00
committed by GitHub
parent c8471cb623
commit aac463b34d

View File

@@ -28,7 +28,7 @@ const DEFAULT_CONFIG: Partial<PowerSankeyCardConfig> = {
};
// 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;