Skip to content

Commit

Permalink
AG-1221 added conditional display logic to hide uniprotid in GCT for …
Browse files Browse the repository at this point in the history
…SRM results
  • Loading branch information
sagely1 committed Jan 24, 2024
1 parent a2cbf68 commit 6179e88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ <h1 class="gct-heading h2">Gene Comparison Tool</h1>
<div class="gene-controls">
<div>
{{ gene.hgnc_symbol || gene.ensembl_gene_id }}
<ng-container *ngIf="gene.uniprotid">
<ng-container *ngIf="gene.uniprotid && this.subCategory !== 'SRM'">
({{ gene.uniprotid }})
</ng-container>
</div>
Expand Down Expand Up @@ -442,7 +442,7 @@ <h1 class="gct-heading h2">Gene Comparison Tool</h1>
<div class="gene-controls">
<div>
{{ gene.hgnc_symbol || gene.ensembl_gene_id }}
<ng-container *ngIf="gene.uniprotid">
<ng-container *ngIf="gene.uniprotid && this.subCategory !== 'SRM'">
({{ gene.uniprotid }})
</ng-container>
</div>
Expand Down

0 comments on commit 6179e88

Please sign in to comment.