Nikatlas 5 년 전
부모
커밋
ac9a12e702
4개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 0
      dist/lib/helpers/graph.js
  2. 0 0
      dist/lib/systems/ViewSystem.js
  3. 1 0
      lib/helpers/graph.js
  4. 2 1
      lib/systems/ViewSystem.js

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/lib/helpers/graph.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/lib/systems/ViewSystem.js


+ 1 - 0
lib/helpers/graph.js

@@ -62,6 +62,7 @@ class Graph{
 		let to = link.to;
 
 		if(!this.nodes[dest] || !this.nodes[to]){
+			console.log(this.nodes, dest, to);
 			throw new Error("One of the Nodes Doesnt Exist");
 		}
 		if(this.links[dest].out.has(link) || this.links[to].in.has(link)){

+ 2 - 1
lib/systems/ViewSystem.js

@@ -223,7 +223,8 @@ export class View {
 
 	import(data, parentNode) {
 		let { tree } = data;
-		this.ViewTree = new Tree();
+		if(!parentNode)
+			this.ViewTree = new Tree();
 		try {
 			this.ViewTree.import(tree, Node, parentNode);
 			this.defaultContainer = this.ViewTree.root;

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.