Skip to content

Commit

Permalink
#1366 Fix mini report click action to worrectly open the report
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed May 26, 2020
1 parent 3f45784 commit fd087c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/scripts/services/api/CortexSrv.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
this.list = function(scope, caseId, observableId, callback) {
return PSearchSrv(undefined, 'connector/cortex/job', {
scope: scope,
sort: '-startDate',
sort: ['-startDate'],
loadAll: false,
pageSize: 200,
onUpdate: callback || angular.noop,
Expand All @@ -25,7 +25,7 @@

this.getJobs = function(caseId, observableId, analyzerId, limit) {
return $http.post(baseUrl + '/job/_search', {
sort: '-startDate',
sort: ['-startDate'],
range: '0-' + (
limit || 10),
query: {
Expand Down

0 comments on commit fd087c0

Please sign in to comment.