Fixup app eventlog overflow

This commit is contained in:
Johannes Zellner
2022-09-29 16:03:56 +02:00
parent c17293401b
commit 6e1a5fa14e

View File

@@ -1211,8 +1211,8 @@
<table ng-hide="eventlog.busy" class="table table-condensed table-hover">
<thead>
<tr>
<th class="col-md-3">{{ 'eventlog.time' | tr }}</th> <!-- "minutes ago" takes space -->
<th class="col-md-7">{{ 'eventlog.details' | tr }}</th>
<th class="col-md-2">{{ 'eventlog.time' | tr }}</th> <!-- "minutes ago" takes space -->
<th class="col-md-8">{{ 'eventlog.details' | tr }}</th>
<th class="col-md-2" style="text-align: right;">
<button class="btn btn-xs btn-default btn-outline" ng-click="eventlog.showPrevPage()" ng-disabled="eventlog.busy || eventlog.currentPage <= 1"><i class="fa fa-angle-double-left"></i></button>
<button class="btn btn-xs btn-default btn-outline" ng-click="eventlog.showNextPage()" ng-disabled="eventlog.busy || eventlog.perPage > eventlog.eventLogs.length"><i class="fa fa-angle-double-right"></i></button>
@@ -1222,7 +1222,7 @@
<tbody ng-repeat="eventLog in eventlog.eventLogs">
<tr ng-click="eventlog.showDetails(eventLog)" class="hand">
<td><span uib-tooltip="{{ eventLog.raw.creationTime | prettyLongDate }}" class="arrow">{{ eventLog.raw.creationTime | prettyDate }}</span></td>
<td colspan="2" ng-bind-html="eventLog.details"></td>
<td style="word-wrap: anywhere;" colspan="2" ng-bind-html="eventLog.details"></td>
</tr>
<tr ng-show="eventlog.activeEventLog === eventLog">
<td colspan="3"><pre class="eventlog-details">{{ eventLog.raw.data | json }}</pre></td>