Skip to content
Snippets Groups Projects
Commit e70a819b authored by Julian Matschinske's avatar Julian Matschinske
Browse files

Merge branch 'view-table-by-default' into 'master'

View tables by default

See merge request covid-19/frontend!98
parents edb22a91 0735b7da
No related branches found
No related tags found
No related merge requests found
......@@ -16,9 +16,9 @@
<div class="card-content">
<div class="tabs is-centered">
<ul>
<li [class.is-active]="tab === 'meta'"><a (click)="tab = 'meta'">Parameters</a></li>
<li [class.is-active]="tab === 'network'"><a (click)="tab = 'network'">Network</a></li>
<li [class.is-active]="tab === 'table'"><a (click)="tab = 'table'">Table</a></li>
<li [class.is-active]="tab === 'network'"><a (click)="tab = 'network'">Network</a></li>
<li [class.is-active]="tab === 'meta'"><a (click)="tab = 'meta'">Parameters</a></li>
</ul>
</div>
<div class="content tab-content" *ngIf="task && task.info.done" [class.is-visible]="tab === 'meta'">
......
......@@ -54,16 +54,14 @@ export class AnalysisWindowComponent implements OnInit, OnChanges {
@Output() visibleItems = new EventEmitter<any>();
public task: Task | null = null;
public indexscreenshot = 1;
private network: any;
private nodeData: { nodes: any, edges: any } = {nodes: null, edges: null};
private drugNodes: any[] = [];
private drugEdges: any[] = [];
public showDrugs = false;
public tab = 'network';
public tab: 'meta' | 'network' | 'table' = 'table';
public physicsEnabled = true;
public drugstatus = true;
private proteins: any;
public effects: any;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment