Skip to content

Commit

Permalink
Make WT product level the first expression in list
Browse files Browse the repository at this point in the history
Refs #2819
  • Loading branch information
kimrutherford committed Mar 25, 2024
1 parent 6508a43 commit 5483240
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions root/static/ng_templates/allele_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -201,16 +201,16 @@ <h4 class="modal-title">
<td ng-class="{ 'has-error': !isValidExpression() }">
<div ng-show="!isValidExpression()"
class="help-block">Required for this allele type</div>
<div>
<input ng-model="alleleData.expression" name="curs-allele-expression" id="allele-edit-overexpression"
type="radio" value="Overexpression" />
<label for="allele-edit-overexpression">Overexpression</label>
</div>
<div>
<input ng-model="alleleData.expression" name="curs-allele-expression" id="allele-edit-wild-type-level"
type="radio" value="Wild type product level" />
<label for="allele-edit-wild-type-level">Wild type product level</label>
</div>
<div>
<input ng-model="alleleData.expression" name="curs-allele-expression" id="allele-edit-overexpression"
type="radio" value="Overexpression" />
<label for="allele-edit-overexpression">Overexpression</label>
</div>
<div>
<input ng-model="alleleData.expression" name="curs-allele-expression" id="allele-edit-knockdown"
type="radio" value="Knockdown" />
Expand Down

0 comments on commit 5483240

Please sign in to comment.