Fix eventlog display

This commit is contained in:
Girish Ramakrishnan
2018-03-13 21:56:47 -07:00
parent c0f01da1cd
commit 529a668db3
2 changed files with 71 additions and 39 deletions

View File

@@ -30,15 +30,13 @@
<thead>
<tr>
<th class="col-md-2">Time</th>
<th class="col-md-2">Event</th>
<th class="col-md-3">Source</th>
<th class="col-md-5">Details</th>
<th class="col-md-7">Details</th>
</tr>
</thead>
<tbody ng-repeat="eventLog in eventLogs">
<tr ng-click="showEventLogDetails(eventLog)" class="hand">
<td><span uib-tooltip="{{ eventLog.creationTime | prettyLongDate }}" class="arrow">{{ eventLog.creationTime | prettyDate }}</span></td>
<td>{{ eventLog | eventLogAction }}</td>
<td>{{ eventLog | eventLogSource }}</td>
<td ng-bind-html="eventLog | eventLogDetails"></td>
</tr>