#58 hidden the progress bar in case of endless repeat count

This commit is contained in:
Fabio Formosa
2022-10-22 20:12:32 +02:00
parent 80cd607d17
commit 5ea8f2adb1
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 16px;
width: 12px;
}
*::-webkit-scrollbar-track {

View File

@@ -11,7 +11,7 @@
<mat-card-subtitle><b>JOB PROGRESS</b></mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<div id="progressBarBox">
<div id="progressBarBox" *ngIf="progress.percentage !== -1">
<mat-progress-bar mode="determinate" value="{{progress.percentage}}"></mat-progress-bar>
{{percentageStr}}
</div>