Format date in UTC for contributor report

test
dan 2021-01-03 13:35:48 -07:00
parent a51644bf9f
commit 6f329251cc
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@
<tbody>
<ng-container *ngFor="let t of transactions; let i = index">
<tr class="row">
<td nowrap>{{t.date | date:'MM-dd-yyyy'}}</td>
<td nowrap>{{t.date | date:'MM-dd-yyyy':'UTC'}}</td>
<td nowrap>{{t.typeId === 1 ? 'Cash' : (t.typeId === 2 ? 'Check' : 'NA')}}</td>
<td nowrap>{{t.checkNumber}}</td>
<td nowrap>{{t.fundId === 1 ? 'General' : (t.fundId === 2 ? 'Missions' : 'NA')}}</td>