Reorder cred param in Webhook node

This commit is contained in:
Iván Ovejero 2022-05-09 11:07:16 +02:00
parent 2c8805c372
commit 6d07fc2d8d

View file

@ -136,6 +136,8 @@ export default mixins(
indexToShowSlotAt (): number { indexToShowSlotAt (): number {
if (this.isHttpRequestNodeV2(this.node)) return 2; if (this.isHttpRequestNodeV2(this.node)) return 2;
if (this.node.type === 'n8n-nodes-base.webhook') return 1;
return 0; return 0;
}, },
}, },