aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/graph/graph.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/_elements/graph/graph.component.ts')
-rw-r--r--frontend/src/app/_elements/graph/graph.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/app/_elements/graph/graph.component.ts b/frontend/src/app/_elements/graph/graph.component.ts
index c7f8d964..da2c7767 100644
--- a/frontend/src/app/_elements/graph/graph.component.ts
+++ b/frontend/src/app/_elements/graph/graph.component.ts
@@ -28,7 +28,7 @@ export class GraphComponent implements AfterViewInit {
@Input() outputNodeColor: string = '#dfd7d7';
private ctx!: CanvasRenderingContext2D;
- @Input() inputColumns?: string[] = ['Nije odabran eksperiment'];
+ @Input() inputColumns?: string[];
constructor() { }
@@ -43,7 +43,7 @@ export class GraphComponent implements AfterViewInit {
window.addEventListener('resize', () => { this.resize() });
this.update();
this.resize();
- console.log(this.layers);
+ //console.log(this.layers);
}
layers: Node[][] = [];