Skip to content

Commit

Permalink
Labelannotation: compare lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Wolf committed Aug 8, 2024
1 parent 83c86c0 commit 36d7de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/templates/labelannotation_viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ <h3 class="card-title">Metrics</h3>
<td class="bg-dark-subtle">{{ report_dict['annotation_labels'][label] }}</td>
{% endif %}
{% else %}
{% if value == report_dict['annotation_labels'][label] %}
{% if value|lower == report_dict['annotation_labels'][label]|lower %}
<td class="bg-success-subtle">{{ value }}</td>
<td class="bg-success-subtle">{{ report_dict['annotation_labels'][label] }}</td>
{% else %}
Expand Down

0 comments on commit 36d7de8

Please sign in to comment.