Skip to content

Commit

Permalink
fix(editor): Hide Execute Node button for unknown nodes (#6684)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored and netroy committed Jul 18, 2023
1 parent 5488f24 commit aa0f917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/components/NodeSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
></NodeTitle>
<div v-if="isExecutable">
<NodeExecuteButton
v-if="!blockUI"
v-if="!blockUI && node && nodeValid"
data-test-id="node-execute-button"
:nodeName="node.name"
:disabled="outputPanelEditMode.enabled && !isTriggerNode"
Expand Down

0 comments on commit aa0f917

Please sign in to comment.