mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
take workflow inputs from child workflow workflow inputs
This commit is contained in:
parent
6f66faaabd
commit
7f436a91fb
|
@ -202,7 +202,7 @@ export class ExecuteWorkflow implements INodeType {
|
|||
loadOptionsDependsOn: ['workflowId.value'],
|
||||
resourceMapper: {
|
||||
resourceMapperMethod: 'getWorkflowInputs',
|
||||
mode: 'upsert',
|
||||
mode: 'add',
|
||||
fieldWords: {
|
||||
singular: 'workflow input',
|
||||
plural: 'workflow inputs',
|
||||
|
|
|
@ -14,9 +14,9 @@ export async function getWorkflowInputs(
|
|||
id: col,
|
||||
displayName: col,
|
||||
required: false,
|
||||
defaultMatch: col === 'id',
|
||||
defaultMatch: true,
|
||||
display: true,
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
canBeUsedToMatch: true,
|
||||
}));
|
||||
|
||||
|
|
Loading…
Reference in a new issue