Skip to content

Commit

Permalink
fix: transfer history (#78)
Browse files Browse the repository at this point in the history
* Update transfer-history-viewer.component.html

fix: Remove access to 'edc:dataRequest' key

* Revert "Update transfer-history-viewer.component.html"

This reverts commit f7c5a94.

* fix: Transfer History does not react when list contains items

Fix bug #67
  • Loading branch information
edwo-dev authored Sep 5, 2023
1 parent 41c1435 commit 11588e5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@

<ng-container matColumnDef="connectorId">
<th mat-header-cell *matHeaderCellDef scope="col">ConnectorId</th>
<td mat-cell *matCellDef="let item">{{item['edc:dataRequest']['edc:connectorId']}}</td>
<td mat-cell *matCellDef="let item">{{item['edc:connectorId']}}</td>
</ng-container>

<ng-container matColumnDef="assetId">
<th mat-header-cell *matHeaderCellDef scope="col">AssetId</th>
<td mat-cell *matCellDef="let item">{{item['edc:dataRequest']['edc:assetId']}}</td>
<td mat-cell *matCellDef="let item">{{item['edc:assetId']}}</td>
</ng-container>

<ng-container matColumnDef="contractId">
<th mat-header-cell *matHeaderCellDef scope="col">ContractId</th>
<td mat-cell *matCellDef="let item">{{item['edc:dataRequest']['edc:contractId']}}</td>
<td mat-cell *matCellDef="let item">{{item['edc:contractId']}}</td>
</ng-container>

<ng-container matColumnDef="action">
Expand Down

0 comments on commit 11588e5

Please sign in to comment.