diff --git a/frontend/src/lib/components/RunForm.svelte b/frontend/src/lib/components/RunForm.svelte index 4dbefbf78d..e5568d4dbd 100644 --- a/frontend/src/lib/components/RunForm.svelte +++ b/frontend/src/lib/components/RunForm.svelte @@ -89,7 +89,7 @@
{#if runnable} - Edited by {runnable.created_by || + Edited by {runnable.created_by || 'unknown'} {/if} diff --git a/frontend/src/lib/components/flows/content/FlowModuleScript.svelte b/frontend/src/lib/components/flows/content/FlowModuleScript.svelte index b1352e3170..0ed67d672f 100644 --- a/frontend/src/lib/components/flows/content/FlowModuleScript.svelte +++ b/frontend/src/lib/components/flows/content/FlowModuleScript.svelte @@ -42,7 +42,7 @@
{#if showDate && date} - + {/if} {#if notFound}
script not found at {path} in workspace {$workspaceStore}
diff --git a/frontend/src/lib/components/runs/RunRow.svelte b/frontend/src/lib/components/runs/RunRow.svelte index c16633ff4e..5b41690035 100644 --- a/frontend/src/lib/components/runs/RunRow.svelte +++ b/frontend/src/lib/components/runs/RunRow.svelte @@ -105,7 +105,7 @@
{#if job} {#if 'started_at' in job && job.started_at} - Started + Started {#if job && 'duration_ms' in job && job.duration_ms != undefined} (Ran in {msToSec( job.duration_ms @@ -121,7 +121,11 @@ {:else if `scheduled_for` in job && job.scheduled_for && forLater(job.scheduled_for)} Scheduled for {displayDate(job.scheduled_for)} {:else} - Waiting for executor (created ) + Waiting for executor (created ) {/if} {/if}