Skip to content

Commit 04431bc

Browse files
committed
chore: move chevron to the right
1 parent 295682e commit 04431bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/components/Output/ExecutionLog.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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">

lib/style/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@
627627
.execution-log__toggle {
628628
display: flex;
629629
align-items: center;
630-
margin-left: -4px;
630+
margin-left: auto;
631631

632632
svg {
633633
fill: #8d8d8d;

0 commit comments

Comments
 (0)