app: various eventlog fixes
This commit is contained in:
@@ -923,7 +923,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
|
||||
eventLogs: [],
|
||||
activeEventLog: null,
|
||||
currentPage: 1,
|
||||
perPage: 30,
|
||||
perPage: 15,
|
||||
|
||||
show: function () {
|
||||
$scope.eventlog.refresh();
|
||||
@@ -937,7 +937,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
|
||||
|
||||
$scope.eventlog.eventLogs = [];
|
||||
result.forEach(function (e) {
|
||||
$scope.eventlog.eventLogs.push({ raw: e, details: Client.eventLogDetails(e, true /* redact app descriptor */), source: Client.eventLogSource(e) });
|
||||
$scope.eventlog.eventLogs.push({ raw: e, details: Client.eventLogDetails(e, $scope.app.id), source: Client.eventLogSource(e) });
|
||||
});
|
||||
|
||||
$scope.eventlog.busy = false;
|
||||
|
||||
Reference in New Issue
Block a user