File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
front/src/modules/timesStops Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,11 @@ const TimesStopsTable = ({
309309 return < span className = "cell-loading-placeholder" /> ;
310310 }
311311 const value = info . getValue ( ) ;
312- return < span > { value ? formatLocalTime ( value ) : '' } </ span > ;
312+ return (
313+ < span className = { ! value ? 'cell-empty-dot' : undefined } >
314+ { value ? formatLocalTime ( value ) : '•' }
315+ </ span >
316+ ) ;
313317 } ,
314318 meta : {
315319 className : 'col-computed-departure computed' ,
Original file line number Diff line number Diff line change 308308 }
309309}
310310
311+ .cell-empty-dot {
312+ display : flex ;
313+ justify-content : center ;
314+ color : var (--grey80 );
315+ }
316+
311317.cell-loading-placeholder {
312318 display : inline-block ;
313319 width : 38px ;
You can’t perform that action at this time.
0 commit comments