Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data/data-grid/pagination/CursorPaginationGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function CursorPaginationGrid() {
aria-labelledby="demo-cursor-pagination-buttons-group-label"
name="cursor-pagination-buttons-group"
value={rowCountType}
onChange={(e) => setRowCountType(e.target.value)}
onChange={(event) => setRowCountType(event.target.value)}
>
<FormControlLabel value="known" control={<Radio />} label="Known" />
<FormControlLabel value="unknown" control={<Radio />} label="Unknown" />
Expand Down
2 changes: 1 addition & 1 deletion docs/data/data-grid/pagination/CursorPaginationGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default function CursorPaginationGrid() {
aria-labelledby="demo-cursor-pagination-buttons-group-label"
name="cursor-pagination-buttons-group"
value={rowCountType}
onChange={(e) => setRowCountType(e.target.value as RowCountType)}
onChange={(event) => setRowCountType(event.target.value as RowCountType)}
>
<FormControlLabel value="known" control={<Radio />} label="Known" />
<FormControlLabel value="unknown" control={<Radio />} label="Unknown" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function ServerSideErrorHandling() {
control={
<Checkbox
checked={shouldRequestsFail}
onChange={(e) => setShouldRequestsFail(e.target.checked)}
onChange={(event) => setShouldRequestsFail(event.target.checked)}
/>
}
label="Make the requests fail"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default function ServerSideErrorHandling() {
control={
<Checkbox
checked={shouldRequestsFail}
onChange={(e) => setShouldRequestsFail(e.target.checked)}
onChange={(event) => setShouldRequestsFail(event.target.checked)}
/>
}
label="Make the requests fail"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function ServerSideTreeDataErrorHandling() {
control={
<Checkbox
checked={shouldRequestsFail}
onChange={(e) => setShouldRequestsFail(e.target.checked)}
onChange={(event) => setShouldRequestsFail(event.target.checked)}
/>
}
label="Make the requests fail"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function ServerSideTreeDataErrorHandling() {
control={
<Checkbox
checked={shouldRequestsFail}
onChange={(e) => setShouldRequestsFail(e.target.checked)}
onChange={(event) => setShouldRequestsFail(event.target.checked)}
/>
}
label="Make the requests fail"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/modules/components/CustomizationPlayground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ const CustomizationPlayground = function CustomizationPlayground({
id="select-component"
label=""
value={selectedDemo}
onChange={(e) => selectDemo(e.target.value as string)}
onChange={(event) => selectDemo(event.target.value as string)}
>
{Object.keys(examples || {}).map((item) => (
<MenuItem key={item} value={item}>
Expand Down