Merge pull request #678 from YvesPa/AddDate

Proposition : Add request date on table for sorting
This commit is contained in:
Roger Far 2025-01-29 18:55:55 -07:00 committed by GitHub
commit 0a705e6720
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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>