From cc4f16f419d34c8f9d3b1cfc76689cda4231239d Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 23 Dec 2021 18:13:25 +0100 Subject: [PATCH] :zap: Improve default types if there is not execution data --- packages/editor-ui/src/components/CodeEdit.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/editor-ui/src/components/CodeEdit.vue b/packages/editor-ui/src/components/CodeEdit.vue index b43282c56c..8c0cb7b825 100644 --- a/packages/editor-ui/src/components/CodeEdit.vue +++ b/packages/editor-ui/src/components/CodeEdit.vue @@ -213,9 +213,17 @@ export default mixins( autoCompleteItems.push(`const $node = ${JSON.stringify(nodes)}`); if (this.codeAutocomplete === 'function') { - autoCompleteItems.push(`const items = ${JSON.stringify(this.createSimpleRepresentation(connectionInputData))}`); + if (connectionInputData) { + autoCompleteItems.push(`const items = ${JSON.stringify(this.createSimpleRepresentation(connectionInputData))}`); + } else { + autoCompleteItems.push(`const items: {json: any}[] = []`); + } } else if (this.codeAutocomplete === 'functionItem') { - autoCompleteItems.push(`const item = $json`); + if (connectionInputData) { + autoCompleteItems.push(`const item = $json`); + } else { + autoCompleteItems.push(`const item = {}`); + } } this.monacoLibrary = monaco.languages.typescript.javascriptDefaults.addExtraLib(