mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
Co-authored-by: Charlie Kolb <charlie@n8n.io> Co-authored-by: Milorad FIlipović <milorad@n8n.io> Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -974,7 +974,12 @@ export class WorkflowDataProxy {
|
||||
type: 'no_execution_data',
|
||||
});
|
||||
}
|
||||
return placeholdersDataInputData?.[name] ?? defaultValue;
|
||||
return (
|
||||
// TS does not know that the key exists, we need to address this in refactor
|
||||
(placeholdersDataInputData?.query as Record<string, unknown>)?.[name] ??
|
||||
placeholdersDataInputData?.[name] ??
|
||||
defaultValue
|
||||
);
|
||||
};
|
||||
|
||||
const base = {
|
||||
|
||||
Reference in New Issue
Block a user