From f4d4ad28932c73f8517d06244e93f9f360bab338 Mon Sep 17 00:00:00 2001 From: ElonH Date: Fri, 29 May 2020 00:06:46 +0800 Subject: [PATCH] fix(list-view): assign more space for name --- .../pages/manager/fileMode/listView/listView.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/pages/manager/fileMode/listView/listView.component.ts b/src/app/pages/manager/fileMode/listView/listView.component.ts index df11fd4..54f2db8 100644 --- a/src/app/pages/manager/fileMode/listView/listView.component.ts +++ b/src/app/pages/manager/fileMode/listView/listView.component.ts @@ -44,10 +44,10 @@ import { API, APIDefinition } from 'ngx-easy-table'; export class ListViewComponent implements OnInit, OnDestroy { public configuration: Config; public columns: Columns[] = [ - { key: 'Name', title: 'Name' }, - { key: 'Size', title: 'Size' }, - { key: 'ModTime', title: 'Modified Time' }, - { key: 'MimeType', title: 'MIME Type' }, + { key: 'Name', title: 'Name', width: '50%' }, + { key: 'Size', title: 'Size', width: '10%' }, + { key: 'ModTime', title: 'Modified Time', width: '20%' }, + { key: 'MimeType', title: 'MIME Type', width: '20%' }, ]; public data: OperationsListFlowOutItemNode[];