Workaround an unhandled error when changing card configuration

This commit is contained in:
futpib 2019-03-21 22:17:35 +03:00
parent 8363d0775c
commit a470fe38fd

View File

@ -254,6 +254,13 @@ class GraphView extends GraphViewBase {
return;
}
// XXX WORKAROUND: this can be called from `requestAnimationFrame` callback after the edge has already been removed.
// Might be a react-digraph bug.
const edgeKey = [ edge.source, edge.target ].join('_');
if (edge.source && edge.target && !this.state.edgesMap[edgeKey]) {
return;
}
const idVar = edge.target ? `${edge.source}-${edge.target}` : 'custom';
const id = `edge-${idVar}`;
const element = this.getEdgeComponent(edge, nodeMoving);