Skip to content
Snippets Groups Projects
Commit 4209322a authored by Maiykol's avatar Maiykol
Browse files

remove console logs

parent 67e7d3f2
No related branches found
No related tags found
No related merge requests found
Pipeline #11030 failed
......@@ -18,10 +18,6 @@ export class InfoTileComponent implements OnInit {
ngOnInit(): void {
}
public print(x) {
console.log(x)
}
public beautify(url: string): string {
if (url.startsWith('https://')) {
url = url.substr('https://'.length);
......
......@@ -60,7 +60,6 @@ export class ProteinNetwork {
}
// label is only used for network visualization
console.log(customNode)
node.label = customNode.label ? customNode.label : customNode.id;
if (node.image) {
......
......@@ -355,7 +355,6 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
* @param values
*/
public setConfigNodeGroup(key: string, nodeGroups: Array<NodeGroup>) {
console.log(Object.keys(nodeGroups).length)
if (nodeGroups === undefined || !Object.keys(nodeGroups).length) {
// if node groups are not set or empty, use default edge group(s)
this.myConfig[key] = defaultConfig.nodeGroups;
......@@ -372,7 +371,6 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
// override default edge groups
this.myConfig[key] = nodeGroups;
console.log(nodeGroups)
}
/**
......
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