Skip to content

Commit

Permalink
Merge pull request #2048 from IntellectEU/hotfix/progress-bar-schemas
Browse files Browse the repository at this point in the history
hotfix/progress-bar-schemas
  • Loading branch information
artembuslaev authored Apr 24, 2023
2 parents 9795bb9 + f6218f6 commit fc27a9b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/app/views/schemas/schemas.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,11 @@ a {
top: 10px;
}

.toolbar-btn.add mat-icon {
font-size: 30px;
left: 10px;
top: 7px;
}

.schemas-table .mat-column-tags {
max-width: 175px;
Expand Down
9 changes: 9 additions & 0 deletions frontend/src/app/views/schemas/schemas.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,12 @@
<div *ngIf="!isSystem && !isConfirmed" class="not-exist">
Before starting work you need to get DID <a [routerLink]="['/profile']">here</a>
</div>

<div *ngIf="loading && !taskId" class="loading">
<mat-spinner></mat-spinner>
</div>
<div *ngIf="loading && taskId" class="loading">
<async-progress class="loading-progress" [taskId]="taskId" [expected]="expectedTaskMessages"
(error)="onAsyncError($event)" (completed)="onAsyncCompleted()"></async-progress>
</div>
</div>

0 comments on commit fc27a9b

Please sign in to comment.