We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c35875 commit db472e2Copy full SHA for db472e2
webserver/package.json
@@ -6,6 +6,7 @@
6
"dependencies": {
7
"@emotion/react": "^11.10.8",
8
"@emotion/styled": "^11.10.8",
9
+ "@mui/system": "^5.4.1",
10
"@mui/icons-material": "^5.11.16",
11
"@mui/material": "^5.12.3",
12
"@mui/x-data-grid": "^6.3.1",
webserver/src/components/Table.jsx
@@ -97,7 +97,7 @@ export default function DataTable() {
97
rows={rows}
98
columns={columns}
99
checkboxSelection
100
- onSelectionModelChange={(selections) => {
+ onRowSelectionModelChange={(selections) => {
101
console.log(selections)
102
if (selections.length > 0) {
103
setselectedRows(selections)
0 commit comments