Skip to content
Snippets Groups Projects
Commit b97bb8e9 authored by Prasad's avatar Prasad
Browse files

Fixes #574: Avoid confusing sort option button on global search

parent 88fdeb62
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@
{/if}
</th>
{foreach item=LISTVIEW_HEADER from=$LISTVIEW_HEADERS}
{if $SEARCH_MODE_RESULTS and ($LISTVIEW_HEADER->getFieldDataType() eq 'multipicklist')}
{if $SEARCH_MODE_RESULTS || ($LISTVIEW_HEADER->getFieldDataType() eq 'multipicklist')}
{assign var=NO_SORTING value=1}
{else}
{assign var=NO_SORTING value=0}
......@@ -250,4 +250,4 @@
<div id="scroller_wrapper" class="bottom-fixed-scroll">
<div id="scroller" class="scroller-div"></div>
</div>
</div>
\ No newline at end of file
</div>
No preview for this file type
......@@ -64,7 +64,7 @@
{/if}
</th>
{foreach item=LISTVIEW_HEADER from=$LISTVIEW_HEADERS}
{if $SEARCH_MODE_RESULTS and ($LISTVIEW_HEADER->getFieldDataType() eq 'multipicklist')}
{if $SEARCH_MODE_RESULTS || ($LISTVIEW_HEADER->getFieldDataType() eq 'multipicklist')}
{assign var=NO_SORTING value=1}
{else}
{assign var=NO_SORTING value=0}
......@@ -185,4 +185,4 @@
<div id="scroller_wrapper" class="bottom-fixed-scroll">
<div id="scroller" class="scroller-div"></div>
</div>
</div>
\ No newline at end of file
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment