Merge remote-tracking branch 'ervu-lkrp-ul/feature/SUPPORT-8381_remove_progress_percents' into develop

This commit is contained in:
Булат Хайруллин 2024-08-01 16:52:24 +03:00
commit 160fa08fd5

View file

@ -23,10 +23,9 @@
<button class="selected-file-delete-btn" (click)="removeFile(item)">{{removeFileButtonName}}</button>
</div>
</div>
<div class="file-upload-progress" *ngIf="displayProgressBar">
<div class="file-upload-progress" *ngIf="displayProgressBar && isProgressBarVisible">
<div class="file-upload-progress-bar"
role="progressbar"
*ngIf="isProgressBarVisible"
[ngStyle]="{ 'width': uploader.progress + '%' }">{{uploader.progress}}%</div>
[ngStyle]="{ 'width': uploader.progress + '%' }"></div>
</div>
</div>