Skip to content

Commit

Permalink
Fix sort error in QueryToolController.js
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstein committed Feb 4, 2022
1 parent 87f8441 commit eb356e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/js/bundles/dn_querybuilder/QueryToolController.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ export default class QueryToolController {
"language": "en",
"country": "EN"
};
options.sort = event.options.sort || [];
if (event.options.sort) {
options.sort = event.options.sort;
}
options.suggestContains = true;
}

Expand Down

0 comments on commit eb356e6

Please sign in to comment.