diff --git a/frontend/src/pages/Planning.tsx b/frontend/src/pages/Planning.tsx
index d9243a0..82357c7 100644
--- a/frontend/src/pages/Planning.tsx
+++ b/frontend/src/pages/Planning.tsx
@@ -403,6 +403,7 @@ function PlanTooltip({
FVE (A / předpověď): {fveDisplay}
SoC cíl: {soc != null && !Number.isNaN(Number(soc)) ? `${Number(soc).toFixed(1)} %` : '—'}
+ Dům: {i.load_baseline_w ?? '—'} W
Baterie: {i.battery_setpoint_w ?? '—'} W
Síť: {i.grid_setpoint_w ?? '—'} W
TČ: {i.heat_pump_enabled ? 'zapnuto' : 'vypnuto'}
@@ -933,6 +934,7 @@ export default function Planning() {
Deye setpoint |
SoC % |
FVE W |
+ Dům W |
Síť W |
EV1 W |
EV2 W |
@@ -948,7 +950,7 @@ export default function Planning() {
key={`sum-${row.dayKey}`}
className="border-b border-slate-700/90 bg-slate-800/70 text-slate-200"
>
-
+ |
{row.dateLabel}
·
FVE celkem{' '}
@@ -999,6 +1001,9 @@ export default function Planning() {
: '—'}
|
+
+ {formatPlanPowerW(i.load_baseline_w)}
+ |
{i.grid_setpoint_w ?? '—'} |
{i.ev1_setpoint_w ?? '—'} |
{i.ev2_setpoint_w ?? '—'} |