mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
chore: Lintfix frontend packages (#16896)
This commit is contained in:
@@ -388,7 +388,6 @@ export function executeData(
|
||||
workflowRunData[parentNodeName].length <= parentRunIndex ||
|
||||
!workflowRunData[parentNodeName][parentRunIndex] ||
|
||||
!workflowRunData[parentNodeName][parentRunIndex].hasOwnProperty('data') ||
|
||||
workflowRunData[parentNodeName][parentRunIndex].data === undefined ||
|
||||
!workflowRunData[parentNodeName][parentRunIndex].data?.hasOwnProperty(inputName)
|
||||
) {
|
||||
executeData.data = {};
|
||||
@@ -926,10 +925,7 @@ export function useWorkflowHelpers() {
|
||||
return trigger.parameters.path as string;
|
||||
}
|
||||
if (trigger.type === FORM_TRIGGER_NODE_TYPE) {
|
||||
return (
|
||||
(((trigger.parameters.options as { path: string }) || {}).path as string) ??
|
||||
trigger.webhookId
|
||||
);
|
||||
return ((trigger.parameters.options as { path: string }) || {}).path ?? trigger.webhookId;
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user