diff options
author | Dan Timoney <dtimoney@att.com> | 2019-06-25 18:57:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-06-25 18:57:41 +0000 |
commit | ed124819a2c928d895ba275d51eadc97afdf5a09 (patch) | |
tree | 9e4d2180c54c968f1d2093731a892c70c2f17353 /cds-ui/client/src/app/app.component.html | |
parent | eba8ca3300290460f3df5e984b6de92d06de222f (diff) | |
parent | 3bc6917ecd7c3fb22c8a65d5279179fc2bb4d6aa (diff) |
Merge "Replace windows alert with Notification component"
Diffstat (limited to 'cds-ui/client/src/app/app.component.html')
-rw-r--r-- | cds-ui/client/src/app/app.component.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cds-ui/client/src/app/app.component.html b/cds-ui/client/src/app/app.component.html index 88446ca84..945db342e 100644 --- a/cds-ui/client/src/app/app.component.html +++ b/cds-ui/client/src/app/app.component.html @@ -20,4 +20,10 @@ limitations under the License. --> +<mat-progress-bar mode="indeterminate" *ngIf="loaderStatus === true"></mat-progress-bar> +<div [ngClass]="{'overlay': loaderStatus === true}"> <router-outlet></router-outlet> +<div class="notification-container"> + <app-notification></app-notification> +</div> +</div> |