Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
diegotoptal committed Oct 29, 2018
1 parent 0998c39 commit 33b8a1f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/core/contrib-teams/contrib-teams.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h2>
<div class="row members-row">
<div *ngFor="let member of team.members; let j = index" class="col-md-2 col-sm-3 col-4">
<div *ngIf="teamsImages[i] | async as tIs; else noimg" class="member-img" [style.background-image]="getImageUrl(tIs[j], tIs, i, j)"></div>
<h3>{{member.name}}</h3>
<h3 class="member-name">{{member.name}}</h3>
</div>
</div>
</div>
Expand Down
2 changes: 2 additions & 0 deletions src/app/core/contrib-teams/contrib-teams.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@

h3 {
text-align: center;
font-size: 16px;
color: $brand-color-content;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/genes/gene-similar/gene-similar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class GeneSimilarComponent implements OnInit {
{ field: 'hgnc_symbol', header: 'Gene name' },
{ field: 'nominations', header: 'Nominated Target' },
{ field: 'haseqtl', header: 'Brain Eqtl' },
{ field: 'isIGAP', header: 'AD Genetic Association'},
{ field: 'isIGAP', header: 'Genetic Association with LOAD'},
{ field: 'druggability', subfield: 'pharos_class', header: 'Druggability Bucket'},
{ field: 'druggability', header: 'Pharos Class'}
];
Expand Down

0 comments on commit 33b8a1f

Please sign in to comment.