mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
🐛 Fix issue that expressions did not resolve for displayOptions
This commit is contained in:
@@ -466,7 +466,7 @@ export default mixins(
|
||||
} else if (typeof nodeParameters[key] === 'object') {
|
||||
returnData[key] = this.getResolveNodeParameters(nodeParameters[key] as INodeParameters);
|
||||
} else {
|
||||
returnData[key] = this.resolveExpression(nodeParameters[key] as string);
|
||||
returnData[key] = this.resolveExpression(nodeParameters[key] as string, nodeParameters);
|
||||
}
|
||||
}
|
||||
return returnData;
|
||||
|
||||
Reference in New Issue
Block a user