Skip to content

Commit

Permalink
fixing issue of New DMN Editor is getting crashed when working with D…
Browse files Browse the repository at this point in the history
…ecision Table Annotation
  • Loading branch information
chinnamatli kusumalatha authored and chinnamatli kusumalatha committed Jan 31, 2025
1 parent 54180b4 commit b77c78f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ export function updateExpressionWidths({

widthsExtension["kie:ComponentWidths"] = [...widthsById.entries()].map(([k, v]) => ({
"@_dmnElementRef": k,
"kie:width": v.map((vv) => ({ __$$text: vv })),
"kie:width": v.filter((width) => width !== undefined).map((vv) => ({ __$$text: vv })),
}));
}

0 comments on commit b77c78f

Please sign in to comment.