feat: No expression error when node hasn’t executed (#8448)

Co-authored-by: Giulio Andreini <andreini@netseven.it>
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Elias Meire
2024-02-27 10:29:16 +01:00
committed by GitHub
parent 737170893d
commit f9a99ec029
29 changed files with 2818 additions and 558 deletions

View File

@@ -12,7 +12,7 @@
:label="buttonLabel"
:type="type"
:size="size"
:icon="!isListeningForEvents && 'flask'"
:icon="!isListeningForEvents && !hideIcon && 'flask'"
:transparent-background="transparent"
:title="!isTriggerNode ? $locale.baseText('ndv.execute.testNode.description') : ''"
@click="onClick"
@@ -72,6 +72,9 @@ export default defineComponent({
telemetrySource: {
type: String,
},
hideIcon: {
type: Boolean,
},
},
setup(props, ctx) {
const workflowsStore = useWorkflowsStore();