From 36151759ca5ab4107286f027fff2fc448fe6d016 Mon Sep 17 00:00:00 2001
From: Maximilian Giller <m.giller@tu-bs.de>
Date: Sun, 29 May 2022 22:16:24 +0200
Subject: [PATCH] Reintroduced number ids, since it is actually useful

---
 src/editor/js/structures/graph/link.ts | 4 ++--
 src/editor/js/structures/graph/node.ts | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/editor/js/structures/graph/link.ts b/src/editor/js/structures/graph/link.ts
index c0345c9..b0eac9b 100644
--- a/src/editor/js/structures/graph/link.ts
+++ b/src/editor/js/structures/graph/link.ts
@@ -96,8 +96,8 @@ export class Link extends GraphElement {
     public static parse(raw: any): Link {
         const link: Link = new Link();
 
-        link.sourceId = raw.source;
-        link.targetId = raw.target;
+        link.sourceId = Number(raw.source);
+        link.targetId = Number(raw.target);
 
         return link;
     }
diff --git a/src/editor/js/structures/graph/node.ts b/src/editor/js/structures/graph/node.ts
index dd67fe0..6e1cc01 100644
--- a/src/editor/js/structures/graph/node.ts
+++ b/src/editor/js/structures/graph/node.ts
@@ -94,7 +94,7 @@ export class Node extends GraphElement {
     public static parse(raw: any): Node {
         const node: Node = new Node();
 
-        node.id = raw.id;
+        node.id = Number(raw.id);
         node.label = raw.name;
         node.description = raw.description;
         node.type = NodeType.parse(raw.type);
-- 
GitLab