actions -> events

also make it all past tense
This commit is contained in:
Girish Ramakrishnan
2018-03-05 10:12:21 -08:00
parent 85dde71ec3
commit b7baafbbe6
2 changed files with 6 additions and 6 deletions

View File

@@ -9,7 +9,7 @@
<div class="col-md-10 col-md-offset-1">
<div class="filter">
<input type="text" class="form-control" style="min-width: 350px;" ng-model="search" ng-model-options="{ debounce: 1000 }" ng-change="updateFilter()" placeholder="Search"/>
<multiselect ng-model="selectedActions" ms-header="All Actions" options="a.name for a in actions" data-multiple="true" ng-change="updateFilter(true)"></multiselect>
<multiselect ng-model="selectedActions" ms-header="All Events" options="a.name for a in actions" data-multiple="true" ng-change="updateFilter(true)"></multiselect>
<select class="form-control" ng-model="pageItems" ng-options="a.name for a in pageItemCount" ng-change="updateFilter(true)"></select>
<!-- <select class="form-control" ng-model="action" ng-options="a.name for a in actions" ng-change="updateFilter()">
<option value="">-- All actions --</option>
@@ -30,16 +30,16 @@
<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-2">Action</th>
<th class="col-md-5">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 | eventLogSource }}</td>
<td>{{ eventLog | eventLogAction }}</td>
<td>{{ eventLog | eventLogSource }}</td>
<td ng-bind-html="eventLog | eventLogDetails"></td>
</tr>
<tr ng-show="activeEventLog === eventLog">