Kusuma04-dev commented on code in PR #2834: URL: https://github.com/apache/incubator-kie-tools/pull/2834#discussion_r1908644583
########## packages/boxed-expression-component/src/expressions/DecisionTableExpression/DecisionTableExpression.tsx: ########## @@ -777,7 +776,15 @@ export function DecisionTableExpression({ }); } - const nextOutputColumns = [...(prev.output ?? [])]; + const nextOutputColumns = [ + ...(prev.output ?? []).map((outputColumn, index) => { + const outputCopy = { ...outputColumn }; + if (outputCopy["@_name"] == null) { Review Comment: Done Jozef. -- 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: commits-unsubscr...@kie.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@kie.apache.org For additional commands, e-mail: commits-h...@kie.apache.org