mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: set autocomplete data as empty array
This commit is contained in:
@@ -71,7 +71,7 @@ export default mixins(genericHelpers).extend({
|
||||
loadAutocompleteData(): void {
|
||||
const executedWorkflow: IExecutionResponse | null = this.$store.getters.getWorkflowExecution;
|
||||
|
||||
let autocompleteData: INodeExecutionData[] = [{ json: { myNewField: 2 } }];
|
||||
let autocompleteData: INodeExecutionData[] = [];
|
||||
|
||||
if (executedWorkflow) {
|
||||
const lastNodeExecuted = executedWorkflow.data.resultData.lastNodeExecuted;
|
||||
|
||||
Reference in New Issue
Block a user