aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/app.component.html')
-rw-r--r--client/src/app/app.component.html16
1 files changed, 9 insertions, 7 deletions
diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html
index 0489c9558..3a60139e1 100644
--- a/client/src/app/app.component.html
+++ b/client/src/app/app.component.html
@@ -40,13 +40,15 @@
40<my-confirm></my-confirm> 40<my-confirm></my-confirm>
41<p-toast position="bottom-right"> 41<p-toast position="bottom-right">
42 <ng-template let-message pTemplate="message"> 42 <ng-template let-message pTemplate="message">
43 <div class="message"> 43 <div class="notification-block">
44 <h3>{{ message.summary }}</h3> 44 <div class="message">
45 <p>{{ message.detail }}</p> 45 <h3>{{ message.summary }}</h3>
46 </div> 46 <p>{{ message.detail }}</p>
47 </div>
47 48
48 <span *ngIf="message.severity === 'success'" class="glyphicon glyphicon-ok"></span> 49 <span *ngIf="message.severity === 'success'" class="glyphicon glyphicon-ok"></span>
49 <span *ngIf="message.severity === 'info'" class="glyphicon glyphicon-info-sign"></span> 50 <span *ngIf="message.severity === 'info'" class="glyphicon glyphicon-info-sign"></span>
50 <span *ngIf="message.severity === 'error'" class="glyphicon glyphicon-remove"></span> 51 <span *ngIf="message.severity === 'error'" class="glyphicon glyphicon-remove"></span>
52 </div>
51 </ng-template> 53 </ng-template>
52</p-toast> 54</p-toast>