diff --git a/src/app/pages/jobs/transferring/transferring.component.ts b/src/app/pages/jobs/transferring/transferring.component.ts index 825cc7b..d9f54d0 100644 --- a/src/app/pages/jobs/transferring/transferring.component.ts +++ b/src/app/pages/jobs/transferring/transferring.component.ts @@ -7,7 +7,15 @@ import { ForamtDuration } from 'src/app/utils/format-duration'; @Component({ selector: 'jobs-transferring', template: ` - + + + {{ row.name }} + {{ row.sizeHumanReadable }} + {{ row.percentage }} + {{ row.speedHumanReadable }} + {{ row.etaHumanReadable }} + + `, styles: [], }) @@ -18,10 +26,10 @@ export class TransfersComponent implements OnInit { public configuration: Config; public columns: Columns[] = [ { key: 'name', title: 'Name' }, - { key: 'sizeHumanReadable', title: 'Size' }, + { key: 'size', title: 'Size' }, { key: 'percentage', title: 'Percentage' }, - { key: 'speedHumanReadable', title: 'Speed' }, - { key: 'etaHumanReadable', title: 'eta' }, + { key: 'speed', title: 'Speed' }, + { key: 'eta', title: 'eta' }, ]; public data: (ITransferring & { sizeHumanReadable: string;