From cef26732b2e5df7e819e6ca018ac722abe72d2a8 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 16 Jan 2025 13:49:14 +0100 Subject: [PATCH] remove flow badge incorrect link --- .../routes/(root)/(logged)/run/[...run]/+page.svelte | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte b/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte index 4a7a8e2280..b8dcfdbbef 100644 --- a/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte @@ -710,9 +710,15 @@ {job.script_path ?? (job.job_kind == 'dependencies' ? 'lock dependencies' : 'No path')}
{#if job.script_hash} - {truncateHash(job.script_hash)} + {#if job.job_kind == 'script'} + {truncateHash(job.script_hash)} + {:else} +
+ {truncateHash(job.script_hash)} +
+ {/if} {/if} {#if job && 'job_kind' in job}