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

[player] Remove minus sign if remaining time in audio/video player is 0

parent c2aeeb80
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@
<div *ngIf="restTimeMode"
class="time mat-typography"
(click)="toggleTime()">
-{{currentRestTime | playerTimeFormat}}
{{currentRestTime ? '-' : ''}}{{currentRestTime | playerTimeFormat}}
</div>
</ng-container>
<ng-container *ngIf="elementModel.muteControl">
......
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