order host event results by host_name, resolves #2390 (#2460)

This commit is contained in:
Leigh
2016-06-16 14:46:57 -04:00
committed by GitHub
parent 946b77128c
commit 8b117c9087

View File

@@ -122,7 +122,7 @@ export default
},
getJobEventChildren: function(id){
var url = GetBasePath('job_events');
url = url + id + '/children/';
url = url + id + '/children/?order_by=host_name';
Rest.setUrl(url);
return Rest.get()
.success(function(data){