Shorten app ids in eventlog

This commit is contained in:
Johannes Zellner
2018-02-19 01:56:09 -08:00
parent c9d3907124
commit 64b8e4ad6c
2 changed files with 11 additions and 7 deletions

View File

@@ -38,7 +38,7 @@
<tr ng-repeat="eventLog in eventLogs">
<td><span uib-tooltip="{{eventLog.creationTime}}" class="arrow">{{ eventLog.creationTime | prettyDate }}</span></td>
<td>{{ eventLog.source.username || eventLog.source.userId || eventLog.source.authType }} <span ng-show="eventLog.source.ip || eventLog.source.appId"> ({{ eventLog.source.ip || eventLog.source.appId }}) </span> </td>
<td>{{ eventLog | eventLogDetails }}</td>
<td ng-bind-html="eventLog | eventLogDetails"></td>
</tr>
</tbody>
</table>