Skip to content
Snippets Groups Projects
Commit 4df90f02 authored by Michael Hartung's avatar Michael Hartung
Browse files

remove logs

parent 446732cf
No related branches found
No related tags found
No related merge requests found
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
<div class="tab-content" *ngIf="task && task.info.done" [class.is-visible]="tab === 'network'"> <div class="tab-content" *ngIf="task && task.info.done" [class.is-visible]="tab === 'network'">
<div class="card-image canvas-content" #networkWithLegend> <div class="card-image canvas-content" #networkWithLegend>
<div *ngIf="myConfig.showLegend"> <div *ngIf="myConfig.showLegend">
<app-network-legend [config]="myConfig" [analysis]="true"></app-network-legend> <app-network-legend [config]="myConfig" [analysis]="false"></app-network-legend>
</div> </div>
<div class="fullheight center image1" #network> <div class="fullheight center image1" #network>
<button class="button is-loading center">Loading</button> <button class="button is-loading center">Loading</button>
......
...@@ -477,8 +477,6 @@ export class AnalysisPanelComponent implements OnInit, OnChanges { ...@@ -477,8 +477,6 @@ export class AnalysisPanelComponent implements OnInit, OnChanges {
// option to use scores[node] as gradient, but sccores are very small // option to use scores[node] as gradient, but sccores are very small
nodes.push(NetworkSettings.getNodeStyle(nodeDetails as Node, config, false, isSeed[node], 1)) nodes.push(NetworkSettings.getNodeStyle(nodeDetails as Node, config, false, isSeed[node], 1))
} }
console.log('nodes')
console.log(nodes)
for (const edge of network.edges) { for (const edge of network.edges) {
edges.push(mapCustomEdge(edge, this.myConfig)); edges.push(mapCustomEdge(edge, this.myConfig));
} }
......
...@@ -136,7 +136,7 @@ export const defaultConfig: IConfig = { ...@@ -136,7 +136,7 @@ export const defaultConfig: IConfig = {
groupName: 'Found Drugs', groupName: 'Found Drugs',
color: { color: {
border: '#F12590', border: '#F12590',
background: '##F12590', background: '#F12590',
highlight: { highlight: {
border: '#F12590', border: '#F12590',
background: '#F12590' background: '#F12590'
......
...@@ -115,7 +115,5 @@ export function mapCustomEdge(customEdge: NodeInteraction, config: IConfig): any ...@@ -115,7 +115,5 @@ export function mapCustomEdge(customEdge: NodeInteraction, config: IConfig): any
...edge, ...edge,
...customEdge ...customEdge
} }
console.log('edge')
console.log(edge)
return edge; return edge;
} }
...@@ -143,9 +143,7 @@ export class NetworkSettings { ...@@ -143,9 +143,7 @@ export class NetworkSettings {
node = merge(node, config.nodeGroups.seedNode); node = merge(node, config.nodeGroups.seedNode);
} else if (isSelected) { } else if (isSelected) {
// apply selected node style to node // apply selected node style to node
console.log(node)
node = merge(node, config.nodeGroups.selectedNode); node = merge(node, config.nodeGroups.selectedNode);
console.log(node)
} }
// show image if image url is given // show image if image url is given
if (node.image) { if (node.image) {
......
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