fix(editor): Hide Execute Node button for unknown nodes (#6684)

This commit is contained in:
Iván Ovejero 2023-07-18 11:43:07 +02:00 committed by GitHub
parent f4a18ba87d
commit 6887b4edea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"