Fix: The bill settlement report was showing the wrong time, without taking into account the timezone.

This commit is contained in:
Amritanshu Agrawal 2021-06-23 22:27:28 +05:30
parent 8a243fe387
commit ca3a599386
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
<!-- Date Column -->
<ng-container matColumnDef="date">
<mat-header-cell *matHeaderCellDef>Time</mat-header-cell>
<mat-cell *matCellDef="let row">{{ row.date }}</mat-cell>
<mat-cell *matCellDef="let row">{{ row.date | localTime }}</mat-cell>
</ng-container>
<!-- Bill ID Column -->