fix(Wait Node): Append n8n attribution option (#10585)

This commit is contained in:
Michael Kret
2024-08-30 16:28:25 +03:00
committed by GitHub
parent ccb553a550
commit 81f4322d45
7 changed files with 25 additions and 26 deletions

View File

@@ -27,6 +27,7 @@ import {
respondWithOptions,
formRespondMode,
formTitle,
appendAttributionToForm,
} from '../Form/common.descriptions';
import { formWebhook } from '../Form/utils';
import { updateDisplayOptions } from '../../utils/utilities';
@@ -436,7 +437,7 @@ export class Wait extends Webhook {
responseMode: ['responseNode'],
},
},
options: [respondWithOptions, webhookSuffix],
options: [appendAttributionToForm, respondWithOptions, webhookSuffix],
},
{
displayName: 'Options',
@@ -452,7 +453,7 @@ export class Wait extends Webhook {
responseMode: ['onReceived', 'lastNode'],
},
},
options: [webhookSuffix],
options: [appendAttributionToForm, webhookSuffix],
},
],
};