Skip to content

Commit e3f46b6

Browse files
committed
Fix table detail panel width
1 parent 9e0738e commit e3f46b6

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/analysis/individualStudy/table/TableView.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,14 @@ export function TableView({
270270
enablePagination: false,
271271
enableRowVirtualization: true,
272272
mantinePaperProps: { style: { maxHeight: '100%', display: 'flex', flexDirection: 'column' } },
273+
mantineDetailPanelProps: {
274+
style: {
275+
flex: '1 1 100%',
276+
maxWidth: '100%',
277+
minWidth: 0,
278+
width: '100%',
279+
},
280+
},
273281
layoutMode: 'grid',
274282
renderDetailPanel: ({ row }) => {
275283
const r = row.original;

0 commit comments

Comments
 (0)