added completed job histroy API

This commit was merged in pull request #751.
This commit is contained in:
victorAnumudu
2024-07-12 19:33:59 +01:00
parent ca53101b55
commit 43f59e8e84
5 changed files with 50 additions and 36 deletions
@@ -21,8 +21,8 @@ function PurchasesTable({purchase}) {
<thead className='w-full'>
<tr className='text-slate-600 dark:text-white'>
<th className="p-4">Trx.</th>
<th className="p-4">Amount</th>
<th className="p-4">Fee</th>
<th className="p-4 text-right">Amount</th>
<th className="p-4 text-right">Fee</th>
</tr>
</thead>
<tbody>
@@ -31,8 +31,8 @@ function PurchasesTable({purchase}) {
<td className="p-4">{item.added_date}<br />
<b>{item.confirmation} </b>
</td>
<td className="p-4">{item.amount}</td>
<td className="p-4">{item.fee}</td>
<td className="p-4 text-right">{item.amount}</td>
<td className="p-4 text-right">{item.fee}</td>
</tr>
))}
</tbody>
@@ -25,7 +25,7 @@ function RecentActivityTable({ payment }) {
<tr className="text-slate-600 dark:text-white">
<th className="p-4">Date</th>
<th className="p-4">Trx.</th>
<th className="p-4">Amnt./Fee</th>
<th className="p-4 text-right">Amnt./Fee</th>
<th className="p-4">Status</th>
</tr>
</thead>
@@ -37,7 +37,7 @@ function RecentActivityTable({ payment }) {
className="p-4"
dangerouslySetInnerHTML={{ __html: item.recipient }}
></td>
<td className="p-4">
<td className="p-4 text-right">
{item.amount}
<br />
{item.fee}