From 90726f4db9eabf139f061cf0626ee26e0d7dd599 Mon Sep 17 00:00:00 2001 From: Theo Macron Date: Wed, 1 Apr 2026 14:00:52 +0200 Subject: [PATCH] front: add dots to empty calculated departure time cells Signed-off-by: Theo Macron --- front/src/modules/timesStops/TimesStopsTable.tsx | 6 +++++- front/src/modules/timesStops/styles/_timesStopsTable.scss | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/front/src/modules/timesStops/TimesStopsTable.tsx b/front/src/modules/timesStops/TimesStopsTable.tsx index 54aa0c76d70..2ab19dd9513 100644 --- a/front/src/modules/timesStops/TimesStopsTable.tsx +++ b/front/src/modules/timesStops/TimesStopsTable.tsx @@ -309,7 +309,11 @@ const TimesStopsTable = ({ return ; } const value = info.getValue(); - return {value ? formatLocalTime(value) : ''}; + return ( + + {value ? formatLocalTime(value) : '•'} + + ); }, meta: { className: 'col-computed-departure computed', diff --git a/front/src/modules/timesStops/styles/_timesStopsTable.scss b/front/src/modules/timesStops/styles/_timesStopsTable.scss index 9e4526a7692..b5f57a56eb4 100644 --- a/front/src/modules/timesStops/styles/_timesStopsTable.scss +++ b/front/src/modules/timesStops/styles/_timesStopsTable.scss @@ -308,6 +308,12 @@ } } +.cell-empty-dot { + display: flex; + justify-content: center; + color: var(--grey80); +} + .cell-loading-placeholder { display: inline-block; width: 38px;