Skip to content

Commit

Permalink
fix(frontend): use correct id for selected for loop iteration (#2787)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatonramadani committed Dec 6, 2023
1 parent d822beb commit 90668fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/lib/components/FlowStatusViewerInner.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -478,11 +478,12 @@
</span>
</Button>
{/if}

<div class="border p-6" class:hidden={forloop_selected != loopJobId}>
<svelte:self
render={forloop_selected == loopJobId && selected == 'sequence' && render}
{workspaceId}
jobId={loopJobId}
jobId={forloop_selected}
on:jobsLoaded={(e) => innerJobLoaded(e.detail, j)}
/>
</div>
Expand Down

0 comments on commit 90668fb

Please sign in to comment.