Skip to content
Snippets Groups Projects
Commit e055d9fd authored by Reid Givens's avatar Reid Givens
Browse files

removed tile counts from summary as they were not intended to be there

parent 646f081f
No related branches found
No related tags found
No related merge requests found
......@@ -44,10 +44,4 @@ export class ProgressSummary {
get numObserved(): number {
return Math.round(this.tiles * (this.observed / 100))
}
get numCalibrated(): number {
return Math.round(this.tiles * (this.calibrated / 100))
}
get numImaged(): number {
return Math.round(this.tiles * (this.imaged / 100))
}
}
......@@ -11,7 +11,6 @@
<tr *ngFor="let epochProgress of progress">
<th>{{epochProgress.epoch}}</th>
<td class="text-center">
{{epochProgress.numObserved}} of {{epochProgress.tiles}}
<div class="progress">
<div class="progress-bar"
[ngClass]="{'bg-success': epochProgress.observed >= 100}"
......@@ -19,9 +18,9 @@
{{epochProgress.observed}}%
</div>
</div>
{{epochProgress.numObserved}} of {{epochProgress.tiles}}
</td>
<td class="text-center">
{{epochProgress.numCalibrated}} of {{epochProgress.tiles}}
<div class="progress">
<div class="progress-bar"
[ngClass]="{'bg-success': epochProgress.calibrated >= 100}"
......@@ -31,7 +30,6 @@
</div>
</td>
<td class="text-center">
{{epochProgress.numImaged}} of {{epochProgress.tiles}}
<div class="progress">
<div class="progress-bar"
[ngClass]="{'bg-success': epochProgress.imaged >= 100}"
......
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