Attempt to parse the notification message as json and show accordingly

This commit is contained in:
Johannes Zellner
2019-02-08 14:05:15 +01:00
parent 2cf0b528f0
commit bb0443b967
2 changed files with 9 additions and 1 deletions

View File

@@ -25,7 +25,8 @@
<div uib-collapse="notification.isCollapsed" expanding="notificationExpanding(notification)">
<br/>
{{ notification.message }}<br/>
<p ng-hide="notification.messageJson">{{ notification.message }}</p>
<pre ng-show="notification.messageJson" ng-click="$event.stopPropagation();" style="cursor: auto">{{ notification.messageJson | json }}</pre>
<br/>
<h2 ng-show="notification.eventId && notification.busyLoadEvent" class="text-center"><i class="fa fa-circle-notch fa-spin"></i></h2>
<pre ng-hide="!notification.eventId || notification.busyLoadEvent" ng-click="$event.stopPropagation();" style="cursor: auto">{{ notification.event.data | json }}</pre>