From a18596955091e1e51fabe337d7311226a8ae3708 Mon Sep 17 00:00:00 2001 From: Max <m.giller@tu-braunschweig.de> Date: Wed, 1 Jun 2022 09:15:34 +0200 Subject: [PATCH] Added todo --- src/editor/js/structures/graph/graph.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/editor/js/structures/graph/graph.ts b/src/editor/js/structures/graph/graph.ts index 5159d74..e8156c7 100644 --- a/src/editor/js/structures/graph/graph.ts +++ b/src/editor/js/structures/graph/graph.ts @@ -241,6 +241,7 @@ export class Graph extends ManagedData { return true; // Doesn't even exist in graph to begin with. } + // TODO: Filter links by link id this.data.links = this.data.links.filter( (l: Link) => l.sourceId !== link.sourceId || l.targetId !== link.targetId -- GitLab