Increase width of duration cell
This commit is contained in:
parent
99cd48ca6d
commit
c6f3b49a6e
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ const tableColumns: { [key: string]: ColDef } = {
|
||||||
suppressSizeToFit: true,
|
suppressSizeToFit: true,
|
||||||
valueFormatter: (params: ValueFormatterParams) => formatDuration(params.value * 1000),
|
valueFormatter: (params: ValueFormatterParams) => formatDuration(params.value * 1000),
|
||||||
valueGetter: (params: ValueGetterParams) => (params.data ? params.data.duration : undefined),
|
valueGetter: (params: ValueGetterParams) => (params.data ? params.data.duration : undefined),
|
||||||
width: 60,
|
width: 70,
|
||||||
},
|
},
|
||||||
genre: {
|
genre: {
|
||||||
cellRenderer: GenreCell,
|
cellRenderer: GenreCell,
|
||||||
|
|
Reference in a new issue