🔎 Integration with DC++ downloads endpoint

This commit is contained in:
2022-07-24 22:20:25 -07:00
parent f865feeeb2
commit 365fa2e115
5 changed files with 24 additions and 22 deletions

View File

@@ -57,6 +57,7 @@ export const DownloadsPanel = (
<th>Filename</th>
<th>Size</th>
<th>Download Time</th>
<th>Bundle ID</th>
</tr>
</thead>
<tbody>
@@ -72,6 +73,9 @@ export const DownloadsPanel = (
.unix(bundle.time_finished)
.format("h:mm on ddd, D MMM, YYYY")}
</td>
<td>
<span className="tag is-warning">{bundle.id}</span>
</td>
</tr>
))}
</tbody>