Skip to content

Commit

Permalink
Fix missing label
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Oct 21, 2019
1 parent d296f6e commit c5b1f66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/components/selects/MultipleSelect.js
Expand Up @@ -106,7 +106,7 @@ export default function MultipleSelect() {
</Select>
</FormControl>
<FormControl className={classes.formControl}>
<InputLabel htmlFor="demo-mutiple-checkbox-label">Tag</InputLabel>
<InputLabel id="demo-mutiple-checkbox-label">Tag</InputLabel>
<Select
labelId="demo-mutiple-checkbox-label"
id="demo-mutiple-checkbox"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/components/selects/MultipleSelect.tsx
Expand Up @@ -108,7 +108,7 @@ export default function MultipleSelect() {
</Select>
</FormControl>
<FormControl className={classes.formControl}>
<InputLabel htmlFor="demo-mutiple-checkbox-label">Tag</InputLabel>
<InputLabel id="demo-mutiple-checkbox-label">Tag</InputLabel>
<Select
labelId="demo-mutiple-checkbox-label"
id="demo-mutiple-checkbox"
Expand Down

0 comments on commit c5b1f66

Please sign in to comment.