Skip to content

Commit

Permalink
Merge pull request #11138 from condor2/patch-1
Browse files Browse the repository at this point in the history
[3.0.x.x] Fixed sort by username API
  • Loading branch information
mhcwebdesign committed Jun 10, 2022
2 parents 813402b + 2b7afd5 commit 6b8aa03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/admin/view/template/user/api_list.twig
Expand Up @@ -36,9 +36,9 @@
<tr>
<td style="width: 1px;" class="text-center"><input type="checkbox" onclick="$('input[name*=\'selected\']').prop('checked', this.checked);" /></td>
<td class="text-left">{% if sort == 'username' %}
<a href="{{ sort_name }}" class="{{ order|lower }}">{{ column_username }}</a>
<a href="{{ sort_username }}" class="{{ order|lower }}">{{ column_username }}</a>
{% else %}
<a href="{{ sort_name }}">{{ column_username }}</a>
<a href="{{ sort_username }}">{{ column_username }}</a>
{% endif %}</td>
<td class="text-left">{% if sort == 'status' %}
<a href="{{ sort_status }}" class="{{ order|lower }}">{{ column_status }}</a>
Expand Down

0 comments on commit 6b8aa03

Please sign in to comment.