🐛 Fix bug that not all Trigger-Nodes got updated/removed

This commit is contained in:
Jan Oberhauser
2020-01-10 13:38:55 -06:00
parent 83c49ddd21
commit 8b1fe83cc0
2 changed files with 21 additions and 9 deletions

View File

@@ -123,7 +123,7 @@ export interface INodeInputDataConnections {
export interface IWorkflowData {
pollResponse?: IPollResponse;
triggerResponse?: ITriggerResponse;
pollResponses?: IPollResponse[];
triggerResponses?: ITriggerResponse[];
workflow: Workflow;
}