Skip to content
Snippets Groups Projects
Commit 8975bcc5 authored by Julian Späth's avatar Julian Späth
Browse files

Merge branch 'icones' into 'master'

Icons

See merge request covid-19/frontend!54
parents 818c4b14 564d50bd
No related branches found
No related tags found
No related merge requests found
......@@ -364,12 +364,19 @@
<table class="table" *ngIf="analysis.getCount() > 0">
<thead>
<tr>
<td>AC</td>
<td>Type</td>
<td>Name</td>
<td>Actions</td>
</tr>
</thead>
<tbody>
<tr *ngFor="let p of analysis.getSelection()">
<td>
<span class="icon">
<i class="fa fa-dna" *ngIf="p.type == 'Host Protein'"></i>
<i class="fa fa-virus" *ngIf="p.type =='Viral Protein'"></i>
</span>
</td>
<td>{{p.name}}</td>
<td>
<button (click)="analysis.removeItem(p.name)" class="button is-small is-danger is-outlined">
......
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