Add request date on table for sorting

This commit is contained in:
YvesPa 2025-01-28 15:08:32 +01:00
parent db1760b36e
commit 1e749a9bfe

View file

@ -20,6 +20,7 @@
<th (click)="sort('files.length')">Files</th>
<th (click)="sort('downloads.length')">Downloads</th>
<th (click)="sort('rdSize')">Size</th>
<th (click)="sort('added')">Requested</th>
<th (click)="sort('status')">Status</th>
</tr>
</thead>
@ -53,6 +54,9 @@
<td>
{{ torrent.rdSize | filesize }}
</td>
<td>
{{ torrent.added | date : 'medium' }}
</td>
<td>
{{ torrent | status }}
</td>