mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
fix(frontend): show code/lock in flow steps on runs page (#7191)
This commit is contained in:
@@ -222,7 +222,11 @@
|
||||
{#if job?.type === 'CompletedJob'}
|
||||
{#if job?.job_kind == 'flow' || isFlowPreview(job?.job_kind)}
|
||||
<div class="w-full mt-8 mb-20">
|
||||
<FlowStatusViewer jobId={job.id} workspaceId={job.workspace_id} wideResults
|
||||
<FlowStatusViewer
|
||||
jobId={job.id}
|
||||
workspaceId={job.workspace_id}
|
||||
wideResults
|
||||
initialJob={job}
|
||||
></FlowStatusViewer>
|
||||
</div>
|
||||
{:else}
|
||||
@@ -301,7 +305,7 @@
|
||||
{#if job?.job_kind == 'flow' || isFlowPreview(job?.job_kind)}
|
||||
<div class="flex flex-col gap-2 w-full">
|
||||
<FlowProgressBar {job} class="py-4" />
|
||||
<FlowStatusViewer jobId={job.id} workspaceId={job.workspace_id} />
|
||||
<FlowStatusViewer jobId={job.id} workspaceId={job.workspace_id} initialJob={job} />
|
||||
</div>
|
||||
{:else}
|
||||
<div class="text-sm font-semibold text-primary mb-1"> Job is still running </div>
|
||||
|
||||
Reference in New Issue
Block a user