Skip to content

Commit

Permalink
Remove template table sorting
Browse files Browse the repository at this point in the history
This is not needed any longer with the DataTables sorting.
  • Loading branch information
JeremyMcCormick committed Oct 16, 2024
1 parent 0f8f032 commit e2fc07c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions browser/_layouts/schema.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ <h2>{{ table.name }}</h2>
</tr>
</thead>
<tbody>
{% assign sorted_by_name = table.columns | sort: 'name' %}
{% assign sorted_columns = sorted_by_name | sort: 'tap:column_index' %}
{% for col in sorted_columns %}
{% for col in table.columns %}
<tr id="{{ col['@id'] | remove:'#' }}">
<td class="column-name">
{{ col.name }}</a>
Expand Down

0 comments on commit e2fc07c

Please sign in to comment.