Skip to content

Commit

Permalink
fix: auto-select labels for oct annotation task
Browse files Browse the repository at this point in the history
  • Loading branch information
huangziwei committed Feb 21, 2024
1 parent 734530f commit e1309cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions retimgann/templates/retimgann/annotation_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

{% if task.alias == "bagnet-fundus" %}
<h1>Lesion annotation for diabetic retinopathy (DR)</h1>
{% elif task.alias == "annotate-oct"%}
{% elif "annotate-oct" in task.alias%}
<h1>Drusen annotation for OCT</h1>
{% endif %}
<div class="row">
Expand Down Expand Up @@ -108,7 +108,7 @@ <h5>Labels</h5>
</label>
<input type="text" id="otherLabelInput" style="display: none;">
</div>
{% elif task.category == "annotate-oct" %}
{% elif "annotate-oct" in task.category %}
<div class="form-check">
<input class="form-check-input acti" type="radio" name="label" id="labelDS" value="DS" checked>
<label class="form-check-label" for="labelDS">
Expand Down

0 comments on commit e1309cf

Please sign in to comment.