Browse Source

Change default mini list columns to better fit

master
jeffvli 3 years ago
committed by Jeff
parent
commit
22803abbe7
  1. 17
      src/components/shared/setDefaultSettings.ts

17
src/components/shared/setDefaultSettings.ts

@ -385,18 +385,31 @@ const setDefaultSettings = (force: boolean) => {
label: '# (Drag/Drop)', label: '# (Drag/Drop)',
}, },
{ {
width: 220,
id: 'Title', id: 'Title',
dataKey: 'combinedtitle', dataKey: 'combinedtitle',
alignment: 'left', alignment: 'left',
flexGrow: 5,
label: 'Title (Combined)', label: 'Title (Combined)',
rowIndex: 7,
resizable: true,
}, },
{ {
width: 60,
id: 'Duration', id: 'Duration',
dataKey: 'duration', dataKey: 'duration',
alignment: 'center', alignment: 'center',
flexGrow: 2,
label: 'Duration', label: 'Duration',
rowIndex: 3,
resizable: true,
},
{
width: 45,
id: 'Fav',
dataKey: 'starred',
alignment: 'center',
label: 'Favorite',
rowIndex: 6,
resizable: true,
}, },
]); ]);
} }

Loading…
Cancel
Save