Skip to content

Commit

Permalink
fix(list-view): assign more space for name
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonH committed May 28, 2020
1 parent f5ac788 commit f4d4ad2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/pages/manager/fileMode/listView/listView.component.ts
Expand Up @@ -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[];
Expand Down

0 comments on commit f4d4ad2

Please sign in to comment.