Skip to content

Commit

Permalink
Fix visit request duration display on shipment metadata view (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccollum-woolpert authored Sep 27, 2022
1 parent 8f37fbb commit b1dbdb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<th mat-header-cell *matHeaderCellDef mat-sort-header>Duration<span>(mm:ss)</span></th>
<td mat-cell *matCellDef="let item">
<ng-container *ngIf="item.visitRequest.duration?.seconds != null; else listNilCharacter">
{{ secondsToFormattedTime(+item.visitRequest.duration) }}
{{ secondsToFormattedTime(item.visitRequest.duration) }}
</ng-container>
</td>
</ng-container>
Expand Down

0 comments on commit b1dbdb4

Please sign in to comment.