File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/frontend/src/components Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ function CustomToolbar() {
5858 sx = { {
5959 width : "100%" ,
6060 } }
61- data-dt-feature = "main-table,table-toolbar"
61+ data-dt-features = "main-table,table-toolbar"
6262 >
6363 < GridToolbarColumnsButton />
6464 < GridToolbarFilterButton />
@@ -86,7 +86,7 @@ export default function InstrumentsTable({
8686 slots = { { toolbar : CustomToolbar } }
8787 hideFooter = { true }
8888 disableVirtualization = { disableVirtualization }
89- data-dt-feature = "main-table"
89+ data-dt-features = "main-table"
9090 />
9191 )
9292}
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export default function InstrumentsChart({
6363 width = "100%"
6464 display = { "flex" }
6565 justifyContent = { "center" }
66- data-dt-feature = { "main-chart" }
66+ data-dt-features = { "main-chart" }
6767 data-dt-mouse-over = "300"
6868 >
6969 < ResponsiveContainer width = "100%" height = "100%" >
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export default function InstrumentsGrid({
2323 instruments : Instrument [ ]
2424} ) {
2525 return (
26- < Grid container spacing = { 2 } data-dt-feature = "instruments" >
26+ < Grid container spacing = { 2 } data-dt-features = "instruments" >
2727 { instruments . map ( ( instrument ) => (
2828 < Item key = { instrument . id } { ...instrument } />
2929 ) ) }
You can’t perform that action at this time.
0 commit comments