diff --git a/frontend/src/lib/components/FlowStatusViewerInner.svelte b/frontend/src/lib/components/FlowStatusViewerInner.svelte index 529b01d53c..d9d9b284e7 100644 --- a/frontend/src/lib/components/FlowStatusViewerInner.svelte +++ b/frontend/src/lib/components/FlowStatusViewerInner.svelte @@ -586,6 +586,7 @@ let stepDetail: FlowModule | string | undefined = undefined let storedListJobs: Record = {} + let wrapperHeight: number = 0 {#if notAnonynmous} @@ -894,7 +895,7 @@ {#if render} {#if job.raw_flow && !isListJob}
-
+
{#each Object.values($retryStatus) as count} @@ -915,6 +916,7 @@ { diff --git a/frontend/src/lib/components/graph/FlowGraphV2.svelte b/frontend/src/lib/components/graph/FlowGraphV2.svelte index a662f4bd15..2f749424ae 100644 --- a/frontend/src/lib/components/graph/FlowGraphV2.svelte +++ b/frontend/src/lib/components/graph/FlowGraphV2.svelte @@ -173,6 +173,7 @@ const edges = writable([]) let height = 0 + function updateStores() { $nodes = layoutNodes(graph?.nodes) $edges = graph.edges @@ -223,10 +224,7 @@ $selectedId !== 'Result' -
+