Skip to content

Commit

Permalink
feat(admin): add payment ID to postfinance payments table
Browse files Browse the repository at this point in the history
  • Loading branch information
jstcki committed Dec 11, 2024
1 parent 4f999c6 commit ddc069f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion apps/admin/components/PostfinancePayments/List/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ const Table = ({
<col style={{ width: '120px' }} />
<col style={{ width: '100px' }} />
<col style={{ width: '180px' }} />
<col style={{ width: '40%' }} />
<col style={{ width: '30%' }} />
<col style={{ width: '100px' }} />
<col style={{ width: '100px' }} />
<col style={{ width: '100px' }} />
<col style={{ width: '120px' }} />
<col style={{ width: '360px' }} />
<col style={{ maxWidth: '150px' }} />
</colgroup>
<thead>
Expand Down Expand Up @@ -84,6 +86,9 @@ const Table = ({
>
<Label>Buchungsdatum {indicator('buchungsdatum')}</Label>
</th>
<th {...styles.interactive} {...styles.left}>
<Label>Zahlungs-ID</Label>
</th>
<th />
</tr>
</thead>
Expand Down Expand Up @@ -123,6 +128,7 @@ const Table = ({
</td>
<td>{postfinancePayment.matched ? 'Yes' : 'No'}</td>
<td>{postfinancePayment.buchungsdatum}</td>
<td>{postfinancePayment.id}</td>
<td>
{!postfinancePayment.matched && (
<span>
Expand Down

0 comments on commit ddc069f

Please sign in to comment.