Skip to content
Snippets Groups Projects
Commit aaa9a137 authored by jojohoch's avatar jojohoch
Browse files

[media-player] Corrects the display of the number of passes

#555
parent a5474365
No related branches found
No related tags found
No related merge requests found
Pipeline #54045 passed
......@@ -34,7 +34,7 @@
</ng-container>
<ng-container *ngIf="playerProperties.maxRuns && playerProperties.showRestRuns">
<div class="runs mat-typography">
{{ runCounter + 1 }} / {{ playerProperties.maxRuns }}
{{ runCounter === playerProperties.maxRuns ? runCounter : runCounter + 1 }} / {{ playerProperties.maxRuns }}
</div>
</ng-container>
<ng-container *ngIf="playerProperties.progressBar">
......
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