fixes to eventlog

This commit is contained in:
Girish Ramakrishnan
2016-05-02 10:33:29 -07:00
parent 7cf08b6a4d
commit 7fca9decc1
3 changed files with 9 additions and 9 deletions

View File

@@ -23,7 +23,7 @@
<tbody>
<tr ng-repeat="eventLog in eventLogs">
<th scope="row">{{ eventLog.creationTime | prettyDate }}</td>
<td>{{ eventLog.source.username || eventLog.source.userId || eventLog.source.authType }} ({{ eventLog.source.ip || eventLog.source.appId }})</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>
</tr>
</tbody>