File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,8 @@ function LogEntry({ entry, isFinished }) {
236236 className = { entryClass }
237237 onClick = { isExpandable ? handleExpandToggle : undefined }
238238 >
239+ < span className = "execution-log__timestamp" > { formatTime ( entry . timestamp ) } </ span >
240+ < span className = "execution-log__label" > { label } </ span >
239241 { isExpandable && (
240242 < span
241243 className = "execution-log__toggle"
@@ -247,8 +249,6 @@ function LogEntry({ entry, isFinished }) {
247249 { expanded ? < ChevronDown size = { 14 } /> : < ChevronRight size = { 14 } /> }
248250 </ span >
249251 ) }
250- < span className = "execution-log__timestamp" > { formatTime ( entry . timestamp ) } </ span >
251- < span className = "execution-log__label" > { label } </ span >
252252 </ div >
253253 { expanded && hasDetails && (
254254 < dl className = "execution-log__details" >
Original file line number Diff line number Diff line change 627627 .execution-log__toggle {
628628 display : flex ;
629629 align-items : center ;
630- margin-left : -4 px ;
630+ margin-left : auto ;
631631
632632 svg {
633633 fill : #8d8d8d ;
You can’t perform that action at this time.
0 commit comments