Skip to content

Commit

Permalink
fix: add lastUpdated Column in Transfer History (#142) (#148)
Browse files Browse the repository at this point in the history
* fix: add lastUpdated Column in Transfer History (#142)

* Get correctly stateTimestamp value
  • Loading branch information
idoiamurua authored Dec 18, 2023
1 parent 3172860 commit 059a40d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
<td mat-cell *matCellDef="let item">{{item.state}}</td>
</ng-container>

<ng-container matColumnDef="lastUpdated">
<th mat-header-cell *matHeaderCellDef scope="col">Last updated</th>
<td mat-cell *matCellDef="let item">{{asDate(item.mandatoryValue('edc', 'stateTimestamp'))}}</td>
</ng-container>

<ng-container matColumnDef="connectorId">
<th mat-header-cell *matHeaderCellDef scope="col">ConnectorId</th>
<td mat-cell *matCellDef="let item">{{item.connectorId}}</td>
Expand Down

0 comments on commit 059a40d

Please sign in to comment.