This is an automated email from the ASF dual-hosted git repository. linxinyuan pushed a commit to branch xinyuan-fix-json in repository https://gitbox.apache.org/repos/asf/texera.git
commit aca3e2844f8e1fe7b7b2187109361461c3c2db63 Author: Xinyuan Lin <[email protected]> AuthorDate: Mon Apr 13 16:10:50 2026 -0700 init --- .../app/workspace/service/execute-workflow/execute-workflow.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/workspace/service/execute-workflow/execute-workflow.service.ts b/frontend/src/app/workspace/service/execute-workflow/execute-workflow.service.ts index cbddc01a66..fa0fa0c259 100644 --- a/frontend/src/app/workspace/service/execute-workflow/execute-workflow.service.ts +++ b/frontend/src/app/workspace/service/execute-workflow/execute-workflow.service.ts @@ -421,7 +421,7 @@ export class ExecuteWorkflowService { ...op.operatorProperties, operatorID: op.operatorID, operatorType: op.operatorType, - inputPorts: op.inputPorts, + inputPorts: op.inputPorts.map(({ allowMultiInputs, ...port }: any) => port), outputPorts: op.outputPorts, }));
