Skip to content
Snippets Groups Projects
Commit 4496dfab authored by AndiMajore's avatar AndiMajore
Browse files

full info about network input print

parent e19ebfff
No related branches found
Tags v0.9.0-rc9
No related merge requests found
...@@ -114,8 +114,11 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit { ...@@ -114,8 +114,11 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
if (network == null) { if (network == null) {
return; return;
} }
network = '{"nodes":[{"id":"PTEN"}]}';
console.log(network) console.log(network)
console.log(typeof network +": " +JSON.stringify(network))
this.networkJSON = JSON.stringify(typeof network === 'string' ? JSON5.parse(network) : network); this.networkJSON = JSON.stringify(typeof network === 'string' ? JSON5.parse(network) : network);
console.log("result:"+this.networkJSON)
this.createNetwork(); this.createNetwork();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment