Skip to content

Commit

Permalink
fix: fix flow rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Sep 25, 2024
1 parent 9909b89 commit fd58e7e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/lib/components/graph/FlowGraphV2.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@
let yamlEditorDrawer: Drawer | undefined = undefined
</script>

<FlowYamlEditor bind:drawer={yamlEditorDrawer} />
{#if insertable}
<FlowYamlEditor bind:drawer={yamlEditorDrawer} />
{/if}

<div style={`height: ${height}px; max-height: ${maxHeight}px;`} bind:clientWidth={width}>
{#if graph?.error}
Expand Down

0 comments on commit fd58e7e

Please sign in to comment.