Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
newfish-cmyk committed Dec 24, 2024
1 parent 7078fa7 commit 2ed2fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/service/core/workflow/dispatch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export async function dispatchWorkFlow(data: Props): Promise<DispatchFlowRespons
externalProvider.externalWorkflowVariables || {}
).reduce<Record<string, string>>((acc, [key, value]) => {
if (!key || !value) return acc;
acc[key] = String(value);
acc[key] = value;
return acc;
}, {});

Expand Down

0 comments on commit 2ed2fc5

Please sign in to comment.