aboutsummaryrefslogtreecommitdiff
path: root/qc_app
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-03-04 11:00:22 +0300
committerFrederick Muriuki Muriithi2024-03-04 11:00:22 +0300
commit65a41fece18cf9069b7d09e002c1d38604e1fe89 (patch)
tree537339003fe3168a3e06b00a7336397f65817ddf /qc_app
parent417887a81d9f58f4cca8bb25dbd2f21178a5a6f2 (diff)
downloadgn-uploader-65a41fece18cf9069b7d09e002c1d38604e1fe89.tar.gz
Use `Id` rather than `ProbeFreezeId`.
Diffstat (limited to 'qc_app')
-rw-r--r--qc_app/templates/select_study.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/qc_app/templates/select_study.html b/qc_app/templates/select_study.html
index bb5dbef..a653375 100644
--- a/qc_app/templates/select_study.html
+++ b/qc_app/templates/select_study.html
@@ -22,7 +22,7 @@
<label for="study" class="form-col-1">study:</label>
<select id="study" name="studyid" class="form-col-2">
{%for study in studies:%}
- <option value="{{study['ProbeFreezeId']}}">{{study["Name"]}}</option>
+ <option value="{{study['Id']}}">{{study["Name"]}}</option>
{%endfor%}
</select>
</fieldset>