MOBILE-3799 h5p: Display '-' or '0' in empty columns
parent
85ac2b0bb5
commit
560c4b2c74
|
@ -45,14 +45,16 @@
|
|||
<span *ngIf="user.attempts.length">
|
||||
{{ user.attempts[user.attempts.length - 1].timemodified | coreFormatDate:'strftimedatetimeshort' }}
|
||||
</span>
|
||||
<span *ngIf="!user.attempts.length">-</span>
|
||||
</ion-col>
|
||||
<ion-col class="ion-text-center" size="2">
|
||||
<span *ngIf="user.score !== undefined">
|
||||
{{ 'core.percentagenumber' | translate: {$a: user.score} }}
|
||||
</span>
|
||||
<span *ngIf="user.score === undefined">-</span>
|
||||
</ion-col>
|
||||
<ion-col class="ion-text-center" size="2">
|
||||
<span *ngIf="user.attempts.length">{{user.attempts.length}}</span>
|
||||
{{user.attempts.length}}
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
</ion-label>
|
||||
|
|
Loading…
Reference in New Issue