Skip to content
Snippets Groups Projects
Unverified Commit e97a095c authored by Eileen McNaughton's avatar Eileen McNaughton Committed by GitHub
Browse files

Merge pull request #15943 from seamuslee001/sort_arrow_activity_search

[UI] Ensure that when sorting on columns in the find activity search …
parents 3201a1fb 735d9ea4
Branches
Tags 5.81.1
No related merge requests found
......@@ -14,21 +14,23 @@
{strip}
<table class="selector row-highlight">
<tr class="sticky">
{if !$single and $context eq 'Search' }
<th scope="col" title="Select Rows">{$form.toggleSelect.html}</th>
{/if}
{foreach from=$columnHeaders item=header}
<th scope="col">
{if $header.sort}
{assign var='key' value=$header.sort}
{$sort->_response.$key.link}
{else}
{$header.name}
{/if}
</th>
{/foreach}
</tr>
<thead>
<tr class="sticky">
{if !$single and $context eq 'Search' }
<th scope="col" title="Select Rows">{$form.toggleSelect.html}</th>
{/if}
{foreach from=$columnHeaders item=header}
<th scope="col">
{if $header.sort}
{assign var='key' value=$header.sort}
{$sort->_response.$key.link}
{else}
{$header.name}
{/if}
</th>
{/foreach}
</tr>
</thead>
{counter start=0 skip=1 print=false}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment