diff options
author | Frederick Muriuki Muriithi | 2024-03-04 11:00:22 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-03-04 11:00:22 +0300 |
commit | 65a41fece18cf9069b7d09e002c1d38604e1fe89 (patch) | |
tree | 537339003fe3168a3e06b00a7336397f65817ddf | |
parent | 417887a81d9f58f4cca8bb25dbd2f21178a5a6f2 (diff) | |
download | gn-uploader-65a41fece18cf9069b7d09e002c1d38604e1fe89.tar.gz |
Use `Id` rather than `ProbeFreezeId`.
-rw-r--r-- | qc_app/templates/select_study.html | 2 |
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> |