File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,9 @@ export const Logs: FC<LogsProps> = ({ lines, className = "" }) => {
2121 < div className = { combineClasses ( [ className , styles . root ] ) } >
2222 { lines . map ( ( line , idx ) => (
2323 < div className = { styles . line } key = { idx } >
24- < div className = { styles . time } > { dayjs ( line . time ) . format ( `HH:mm:ss.SSS` ) } </ div >
25- < div > { line . output } </ div >
24+ < span className = { styles . time } > { dayjs ( line . time ) . format ( `HH:mm:ss.SSS` ) } </ span >
25+
26+ < span > { line . output } </ span >
2627 </ div >
2728 ) ) }
2829 </ div >
@@ -42,12 +43,10 @@ const useStyles = makeStyles((theme) => ({
4243 overflowX : "auto" ,
4344 } ,
4445 line : {
45- display : "flex" ,
46- alignItems : "baseline" ,
46+ whiteSpace : "nowrap" ,
4747 } ,
4848 time : {
4949 width : theme . spacing ( 12.5 ) ,
50- marginRight : theme . spacing ( 3 ) ,
51- flexShrink : 0 ,
50+ display : "inline-block" ,
5251 } ,
5352} ) )
You can’t perform that action at this time.
0 commit comments