Add "Downloaded" timestamp column to completed downloads list

Display the completion time for each download in the done list.
The backend already stores a nanosecond timestamp on DownloadInfo;                                     this wires it up to the frontend using Angular's DatePipe.
This commit is contained in:
CyCl0ne
2026-03-08 14:56:16 +01:00
parent a2740375be
commit 3bbe1e8424
3 changed files with 10 additions and 1 deletions
+1
View File
@@ -20,6 +20,7 @@ export interface Download {
eta: number;
filename: string;
checked: boolean;
timestamp?: number;
size?: number;
error?: string;
deleting?: boolean;