diff --git a/frontend/src/pages/DirectorsForecast.tsx b/frontend/src/pages/DirectorsForecast.tsx index 1d1c883d..965aa6fd 100644 --- a/frontend/src/pages/DirectorsForecast.tsx +++ b/frontend/src/pages/DirectorsForecast.tsx @@ -228,7 +228,7 @@ function WorksheetTab({ year, month }: { year: number; month: number }) { onChange={e => setOvr(day.date, 'pickup_rooms', e.target.value)} className="df-cell-input" /> ) : ( - {parseInt(ovr.pickup_rooms || '0') || '—'} + {day.is_past ? '—' : (parseInt(ovr.pickup_rooms || '0') || '—')} )}