Skip to content

Commit

Permalink
Ensure bug fix for sorting results table appears on main results tabl…
Browse files Browse the repository at this point in the history
…e correctly
  • Loading branch information
asset-web committed Jun 20, 2024
1 parent 498c6e9 commit b963782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/templates/results_listing.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
{% for result in results %}
<tr>
<th scope="row" class="dt-left">{{ result.criteria.upload }}</th>
<td data-order="{{ result_stub.criteria.created | date:'U' }}">{{ result.criteria.created|date:"d M Y H:i" }}</td>
<td data-order="{{ result.criteria.created | date:'U' }}">{{ result.criteria.created|date:"d M Y H:i" }}</td>
<td>{{ result.status }} {% if result.has_changed %} <i class="fa fa-info-circle" title="Revised result" style="color:#337ab7;" data-results-change="{{ result.id }}"></i>{% endif %}</td>
<th scope="row" class="dt-left"><a href="{% url 'criteria' pk=result.criteria.pk %}" title="Search criteria for resultset '{{ result.pk }}'">Search criteria</a></th>
{% if result.mediator_match_counts_v4 %}
Expand Down

0 comments on commit b963782

Please sign in to comment.