|
|
|
|
@ -88,7 +88,8 @@ const WorkflowPreview = () => {
|
|
|
|
|
onMouseDown={startResizing}
|
|
|
|
|
/>
|
|
|
|
|
<div className='flex items-center justify-between p-4 pb-1 text-base font-semibold text-text-primary'>
|
|
|
|
|
{`Test Run${!workflowRunningData?.result.sequence_number ? '' : `#${workflowRunningData?.result.sequence_number}`}`}
|
|
|
|
|
{!workflowRunningData?.result.sequence_number && 'Test Run'}
|
|
|
|
|
{workflowRunningData?.result.sequence_number && `Test Run #${workflowRunningData?.result.sequence_number}`}
|
|
|
|
|
<div className='cursor-pointer p-1' onClick={() => handleCancelDebugAndPreviewPanel()}>
|
|
|
|
|
<RiCloseLine className='h-4 w-4 text-text-tertiary' />
|
|
|
|
|
</div>
|
|
|
|
|
|