1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Fix battery to grid connection in Sankey card (#26973)

This commit is contained in:
Petar Petrov
2025-09-09 20:27:41 +03:00
committed by GitHub
parent 61487565db
commit bee8980192

View File

@@ -225,7 +225,7 @@ class HuiEnergySankeyCard
if (consumption.total.battery_to_grid > 0) {
links.push({
source: "battery",
target: "grid",
target: "grid_return",
value: consumption.total.battery_to_grid,
});
}