Xiao-zhen-Liu commented on code in PR #4342:
URL: https://github.com/apache/texera/pull/4342#discussion_r3025248710
##########
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 don't understand this change... If `allowMultiInput` is set to `true`,
what is the point of the next if?
--
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]