Skip to content

Commit

Permalink
[docs] Remove relience of abbreviations (#14226)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Aug 16, 2024
1 parent c0b5993 commit e557ed5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
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

0 comments on commit e557ed5

Please sign in to comment.