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;