Skip to content

Commit 5bd3487

Browse files
Fix for transactionId field in batch export (#50)
1 parent 4662411 commit 5bd3487

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/payment-hub/request-to-pay/bulk-batch-export/bulk-batch-export.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@
4949
<!-- Name Column -->
5050
<ng-container matColumnDef="Request Id">
5151
<th mat-header-cell *matHeaderCellDef>Request Id</th>
52-
<td mat-cell *matCellDef="let element">{{ element.id }}</td>
52+
<td mat-cell *matCellDef="let element">{{ element.transactionId }}</td>
5353
</ng-container>
5454
<ng-container matColumnDef="Transaction Id">
5555
<th mat-header-cell *matHeaderCellDef>Transaction Id</th>
56-
<td mat-cell *matCellDef="let element">{{ element.completed }}</td>
56+
<td mat-cell *matCellDef="let element">{{ element.transactionId }}</td>
5757
</ng-container>
5858
<ng-container matColumnDef="Completion Time">
5959
<th mat-header-cell *matHeaderCellDef>Completion Time</th>

0 commit comments

Comments
 (0)