We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd0ad8 commit 08d463dCopy full SHA for 08d463d
src/app/modeling/diagram/diagram.component.ts
@@ -1288,6 +1288,7 @@ export abstract class CanvasBase {
1288
if (movingObj[CProps.dfs]) {
1289
movingObj[CProps.dfs].forEach(dfID => {
1290
const dfObj = this.getCanvasElementByCanvasID(dfID);
1291
+ if (!dfObj) return;
1292
let isEnd = dfObj[CProps.fe2] == movingObj[CProps.canvasID];
1293
let start = this.getFlowAnchorPoint(isEnd ? dfObj[CProps.fa2] : dfObj[CProps.fa1], movingObj);
1294
let p = isEnd ? CProps.p2ID : CProps.p0ID;
0 commit comments