Skip to content

Commit c2f8d4d

Browse files
committed
feat(StatusCell): display timeout indication for 'STARTED' status
1 parent 979175c commit c2f8d4d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/modules/tasks/StatusCell.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ const StatusCell = ({
100100

101101
return (
102102
<span className="flex flex-wrap items-center gap-2">
103-
<span className={classes}>{label}</span>
103+
<span className={classes}>
104+
{label} {label === 'STARTED' && timeout ? '(timeout)' : ''}
105+
</span>
104106
</span>
105107
);
106108
};

0 commit comments

Comments
 (0)