Skip to content
Snippets Groups Projects
Commit 36a8c21d authored by Isaac Evavold's avatar Isaac Evavold
Browse files

remove bucky popin on audit close

parent 5f3fe36d
No related branches found
No related tags found
No related merge requests found
......@@ -6,15 +6,16 @@
Return to audit list
</button>
<div *ngIf="(visibleAuditStatus$ | async) == 'Loaded'; then loadedAudit else loadingAudit"></div>
<ng-template #loadedAudit>
<cse-dars-audit [audit]="audit$ | async"></cse-dars-audit>
</ng-template>
<ng-template #loadingAudit>
<img id="loading-bucky" src="../../../assets/img/bucky-happy.svg" alt="Happy Bucky Badger">
<p>Loading your degree Audit</p>
<mat-spinner diameter="50"></mat-spinner>
</ng-template>
<ng-container [ngSwitch]="visibleAuditStatus$ | async">
<ng-container *ngSwitchCase="'Loaded'">
<cse-dars-audit [audit]="audit$ | async"></cse-dars-audit>
</ng-container>
<ng-container *ngSwitchCase="'Loading'">
<img id="loading-bucky" src="../../../assets/img/bucky-happy.svg" alt="Happy Bucky Badger">
<p>Loading your degree Audit</p>
<mat-spinner diameter="50"></mat-spinner>
</ng-container>
</ng-container>
</div>
</mat-sidenav>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment