Skip to content

Commit

Permalink
TheHive-Project#1006 Sort case templates by name for cleaner UI
Browse files Browse the repository at this point in the history
  • Loading branch information
ITServ-DE committed Jul 9, 2019
1 parent d3c15bb commit 4217855
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/app/scripts/services/CaseTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
var defer = $q.defer();
$http.post('./api/case/template/_search', {}, {
params: {
range: 'all'
range: 'all',
sort: '+name'
}
}).then(function(response) {
defer.resolve(response.data);
Expand Down

0 comments on commit 4217855

Please sign in to comment.