Skip to content
Snippets Groups Projects
Commit 6ec31572 authored by juanf's avatar juanf
Browse files

SSDM-4552 : Global search sort by identifier and type disabled, don't makes sense.

SVN: 37548
parent 4ec3b0c3
No related branches found
No related tags found
No related merge requests found
...@@ -452,7 +452,7 @@ function AdvancedSearchView(advancedSearchController, advancedSearchModel) { ...@@ -452,7 +452,7 @@ function AdvancedSearchView(advancedSearchController, advancedSearchModel) {
label : 'Entity Type', label : 'Entity Type',
property : 'entityType', property : 'entityType',
isExportable: true, isExportable: true,
sortable : true sortable : !isGlobalSearch
}, { }, {
label : 'Name', label : 'Name',
property : 'NAME', property : 'NAME',
...@@ -477,7 +477,7 @@ function AdvancedSearchView(advancedSearchController, advancedSearchModel) { ...@@ -477,7 +477,7 @@ function AdvancedSearchView(advancedSearchController, advancedSearchModel) {
label : 'Identifier', label : 'Identifier',
property : 'identifier', property : 'identifier',
isExportable: true, isExportable: true,
sortable : true, sortable : !isGlobalSearch,
render : function(data) { render : function(data) {
return getLinkOnClick(data.identifier, data); return getLinkOnClick(data.identifier, data);
} }
......
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