Skip to content

Commit

Permalink
fix(ui): amend editor for flow creation
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic committed Jul 10, 2024
1 parent 8857f1c commit 63a67be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/inputs/EditorView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@
/>
<EditorButtons
v-if="openedTabs.length"
v-if="isCreating || openedTabs.length"
:is-creating="props.isCreating"
:is-read-only="props.isReadOnly"
:can-delete="canDelete()"
Expand Down Expand Up @@ -1011,7 +1011,7 @@
style="flex: 1;"
>
<editor
v-if="openedTabs.length"
v-if="isCreating || openedTabs.length"
ref="editorDomElement"
@save="save"
@execute="execute"
Expand Down

0 comments on commit 63a67be

Please sign in to comment.