Increase width of duration cell

This commit is contained in:
jeffvli 2023-01-07 23:45:40 -08:00
parent 99cd48ca6d
commit c6f3b49a6e

View file

@ -160,7 +160,7 @@ const tableColumns: { [key: string]: ColDef } = {
suppressSizeToFit: true,
valueFormatter: (params: ValueFormatterParams) => formatDuration(params.value * 1000),
valueGetter: (params: ValueGetterParams) => (params.data ? params.data.duration : undefined),
width: 60,
width: 70,
},
genre: {
cellRenderer: GenreCell,