Do not duplicate app descriptor in app eventlog

This commit is contained in:
Johannes Zellner
2021-10-19 16:23:44 +02:00
parent dceb748fbe
commit 9e483a317d
2 changed files with 51 additions and 47 deletions

View File

@@ -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), source: Client.eventLogSource(e) });
$scope.eventlog.eventLogs.push({ raw: e, details: Client.eventLogDetails(e, true /* redact app descriptor */), source: Client.eventLogSource(e) });
});
$scope.eventlog.busy = false;