Skip to content
Snippets Groups Projects
Commit 54bdc5a8 authored by juanf's avatar juanf
Browse files

SSDM-2597 : bugfix, avoid imposible sortings

SVN: 37278
parent 59f0dc00
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,13 @@ function AdvancedSearchController(mainController, forceFreeTextSearch) {
fetchOptions.sort.type = "Attribute";
fetchOptions.sort.name = "modificationDate";
break;
case "entityKind":
case "identifier":
case "experiment":
case "matched":
case "score":
fetchOptions.sort = null;
break;
default: //Properties
fetchOptions.sort.type = "Property";
fetchOptions.sort.name = options.sortProperty;
......
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