Do not show ack button on old notifications

This commit is contained in:
Johannes Zellner
2019-01-08 13:45:11 +01:00
parent 979af88a40
commit c9628c0f75

View File

@@ -305,7 +305,7 @@
{{ notification.title }} <small class="text-muted" uib-tooltip="{{ notification.creationTime | prettyLongDate }}">{{ notification.creationTime | prettyDate }}</small>
</td>
<td class="text-right no-wrap" style="vertical-align: bottom">
<button class="btn btn-xs btn-success" ng-click="notifications.ack(notification)" uib-tooltip="Clear"><i class="fa fa-check"></i></button>
<button class="btn btn-xs btn-success" ng-hide="notification.acknowledged" ng-click="notifications.ack(notification)" uib-tooltip="Clear"><i class="fa fa-check"></i></button>
</td>
</tr>
<tr ng-show="notifications.activeNotification === notification" class="notification-details">
@@ -316,7 +316,7 @@
</tr>
</tbody>
</table>
<div class="col-md-12 text-center">
<div class="col-md-12 text-center" ng-hide="notifications.all">
<button class="btn btn-outline btn-xs btn-default" ng-click="notifications.showOld()">Show older Notifications</button>
</div>
</div>