fix run rendering of flownode job (#4900)

This commit is contained in:
Lucas Abel
2024-12-11 14:33:42 +01:00
committed by GitHub
parent af5cca1b00
commit ca1ff291d7

View File

@@ -833,7 +833,7 @@
<h2 class="mt-10">Scheduled to be executed later: {displayDate(job?.['scheduled_for'])}</h2>
</div>
{/if}
{#if job?.job_kind !== 'flow' && job?.job_kind !== 'flowpreview' && job?.job_kind !== 'singlescriptflow'}
{#if job?.job_kind !== 'flow' && job?.job_kind !== 'flowpreview' && job?.job_kind !== 'singlescriptflow' && job?.job_kind !== 'flownode'}
{#if ['python3', 'bun', 'deno'].includes(job?.language ?? '') && (job?.job_kind == 'script' || job?.job_kind == 'preview')}
<ExecutionDuration bind:job bind:longRunning={currentJobIsLongRunning} />
{/if}