File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
torchci/components/metrics/panels Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import HelpIcon from "@mui/icons-material/Help" ;
2
- import { Skeleton , Typography } from "@mui/material" ;
2
+ import { Box , Skeleton , Typography } from "@mui/material" ;
3
3
import IconButton from "@mui/material/IconButton" ;
4
4
import { DataGrid , GridColDef } from "@mui/x-data-grid" ;
5
5
import { CSSProperties } from "react" ;
@@ -100,7 +100,8 @@ export function TablePanelWithData({
100
100
}
101
101
102
102
return (
103
- < >
103
+ < Box sx = { { mb : 2 , overflow : "hidden" } } >
104
+ < Header />
104
105
< DataGrid
105
106
style = { customStyle }
106
107
{ ...dataGridProps }
@@ -112,8 +113,7 @@ export function TablePanelWithData({
112
113
showFooter && pageSize === undefined && ! disableAutoPageSize
113
114
}
114
115
pageSize = { pageSize }
115
- slots = { { toolbar : Header } }
116
116
/>
117
- </ >
117
+ </ Box >
118
118
) ;
119
119
}
You can’t perform that action at this time.
0 commit comments