Xiao-zhen-Liu commented on code in PR #4342:
URL: https://github.com/apache/texera/pull/4342#discussion_r3029109025
##########
frontend/src/app/workspace/service/validation/validation-workflow.service.ts:
##########
@@ -325,7 +325,9 @@ export class ValidationWorkflowService {
for (let i = 0; i < operator.inputPorts.length; i++) {
const port = operator.inputPorts[i];
const portNumInputs = numInputLinksByPort.get(port.portID) ?? 0;
- if (port.allowMultiInputs) {
+ let allowMultiInput = port.allowMultiInputs;
Review Comment:
I understand this, but the change here is not related to keeping the flag. I
think you are making `allowMultiInput` to be true by default in
`workflow-editor.component.ts`, and if that is the case, why do we need to
additionally set it to be `true` again here?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]