Update default sort field to 'added' and direction to 'desc' in torrent table component

This commit is contained in:
omgbeez 2026-02-20 10:01:19 -05:00 committed by Clifford Roche
parent 6572ba752c
commit f2dab9f6e1

View file

@ -21,8 +21,8 @@ export class TorrentTableComponent implements OnInit {
public torrents: Torrent[] = [];
public selectedTorrents: string[] = [];
public error: string;
public sortProperty = 'rdName';
public sortDirection: 'asc' | 'desc' = 'asc';
public sortProperty = 'added';
public sortDirection: 'asc' | 'desc' = 'desc';
public isDeleteModalActive: boolean;
public deleteError: string;