From f2dab9f6e119989fa40d25833d88f899a60eb4f7 Mon Sep 17 00:00:00 2001 From: omgbeez <251408589+omgbeez@users.noreply.github.com> Date: Fri, 20 Feb 2026 10:01:19 -0500 Subject: [PATCH] Update default sort field to 'added' and direction to 'desc' in torrent table component --- client/src/app/torrent-table/torrent-table.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/app/torrent-table/torrent-table.component.ts b/client/src/app/torrent-table/torrent-table.component.ts index da7478f..3701477 100644 --- a/client/src/app/torrent-table/torrent-table.component.ts +++ b/client/src/app/torrent-table/torrent-table.component.ts @@ -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;