Skip to content

Commit

Permalink
[docs] Typo in MultipleSelect (#26466)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-vovk committed May 26, 2021
1 parent bb0bbe2 commit 78d97b2
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions docs/src/pages/components/selects/MultipleSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ export default function MultipleSelect() {
return (
<div>
<FormControl sx={{ m: 1, minWidth: 120, maxWidth: 300 }}>
<InputLabel id="demo-mutiple-name-label">Name</InputLabel>
<InputLabel id="demo-multiple-name-label">Name</InputLabel>
<Select
labelId="demo-mutiple-name-label"
id="demo-mutiple-name"
labelId="demo-multiple-name-label"
id="demo-multiple-name"
multiple
value={personName}
onChange={handleChange}
Expand Down
6 changes: 3 additions & 3 deletions docs/src/pages/components/selects/MultipleSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ export default function MultipleSelect() {
return (
<div>
<FormControl sx={{ m: 1, minWidth: 120, maxWidth: 300 }}>
<InputLabel id="demo-mutiple-name-label">Name</InputLabel>
<InputLabel id="demo-multiple-name-label">Name</InputLabel>
<Select
labelId="demo-mutiple-name-label"
id="demo-mutiple-name"
labelId="demo-multiple-name-label"
id="demo-multiple-name"
multiple
value={personName}
onChange={handleChange}
Expand Down
6 changes: 3 additions & 3 deletions docs/src/pages/components/selects/MultipleSelectCheckmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ export default function MultipleSelectCheckmarks() {
return (
<div>
<FormControl sx={{ m: 1, minWidth: 120, maxWidth: 300 }}>
<InputLabel id="demo-mutiple-checkbox-label">Tag</InputLabel>
<InputLabel id="demo-multiple-checkbox-label">Tag</InputLabel>
<Select
labelId="demo-mutiple-checkbox-label"
id="demo-mutiple-checkbox"
labelId="demo-multiple-checkbox-label"
id="demo-multiple-checkbox"
multiple
value={personName}
onChange={handleChange}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ export default function MultipleSelectCheckmarks() {
return (
<div>
<FormControl sx={{ m: 1, minWidth: 120, maxWidth: 300 }}>
<InputLabel id="demo-mutiple-checkbox-label">Tag</InputLabel>
<InputLabel id="demo-multiple-checkbox-label">Tag</InputLabel>
<Select
labelId="demo-mutiple-checkbox-label"
id="demo-mutiple-checkbox"
labelId="demo-multiple-checkbox-label"
id="demo-multiple-checkbox"
multiple
value={personName}
onChange={handleChange}
Expand Down
6 changes: 3 additions & 3 deletions docs/src/pages/components/selects/MultipleSelectChip.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export default function MultipleSelectChip() {
return (
<div>
<FormControl sx={{ m: 1, minWidth: 120, maxWidth: 300 }}>
<InputLabel id="demo-mutiple-chip-label">Chip</InputLabel>
<InputLabel id="demo-multiple-chip-label">Chip</InputLabel>
<Select
labelId="demo-mutiple-chip-label"
id="demo-mutiple-chip"
labelId="demo-multiple-chip-label"
id="demo-multiple-chip"
multiple
value={personName}
onChange={handleChange}
Expand Down
6 changes: 3 additions & 3 deletions docs/src/pages/components/selects/MultipleSelectChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export default function MultipleSelectChip() {
return (
<div>
<FormControl sx={{ m: 1, minWidth: 120, maxWidth: 300 }}>
<InputLabel id="demo-mutiple-chip-label">Chip</InputLabel>
<InputLabel id="demo-multiple-chip-label">Chip</InputLabel>
<Select
labelId="demo-mutiple-chip-label"
id="demo-mutiple-chip"
labelId="demo-multiple-chip-label"
id="demo-multiple-chip"
multiple
value={personName}
onChange={handleChange}
Expand Down

0 comments on commit 78d97b2

Please sign in to comment.