Skip to content

Commit

Permalink
[docs] Fix OutlinedLabel typo (mui#20006)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcooke authored and EsoterikStare committed Mar 30, 2020
1 parent 5cb2432 commit bde4d89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/pages/api-docs/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ You can learn more about the difference by [reading this guide](/guides/minimizi
| <span class="prop-name">IconComponent</span> | <span class="prop-type">elementType</span> | <span class="prop-default">ArrowDropDownIcon</span> | The icon that displays the arrow. |
| <span class="prop-name">input</span> | <span class="prop-type">element</span> | | An `Input` element; does not have to be a material-ui specific `Input`. |
| <span class="prop-name">inputProps</span> | <span class="prop-type">object</span> | | [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#Attributes) applied to the `input` element. When `native` is `true`, the attributes are applied on the `select` element. |
| <span class="prop-name">label</span> | <span class="prop-type">node</span> | | See [OutlinedLabel#label](/api/outlined-input/#props) |
| <span class="prop-name">label</span> | <span class="prop-type">node</span> | | See [OutlinedInput#label](/api/outlined-input/#props) |
| <span class="prop-name">labelId</span> | <span class="prop-type">string</span> | | The ID of an element that acts as an additional label. The Select will be labelled by the additional label and the selected value. |
| <span class="prop-name">labelWidth</span> | <span class="prop-type">number</span> | <span class="prop-default">0</span> | See [OutlinedLabel#label](/api/outlined-input/#props) |
| <span class="prop-name">labelWidth</span> | <span class="prop-type">number</span> | <span class="prop-default">0</span> | See [OutlinedInput#label](/api/outlined-input/#props) |
| <span class="prop-name">MenuProps</span> | <span class="prop-type">object</span> | | Props applied to the [`Menu`](/api/menu/) element. |
| <span class="prop-name">multiple</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, `value` must be an array and the menu will support multiple selections. |
| <span class="prop-name">native</span> | <span class="prop-type">bool</span> | <span class="prop-default">false</span> | If `true`, the component will be using a native `select` element. |
Expand Down
4 changes: 2 additions & 2 deletions packages/material-ui/src/Select/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Select.propTypes = {
*/
inputProps: PropTypes.object,
/**
* See [OutlinedLabel#label](/api/outlined-input/#props)
* See [OutlinedInput#label](/api/outlined-input/#props)
*/
label: PropTypes.node,
/**
Expand All @@ -152,7 +152,7 @@ Select.propTypes = {
*/
labelId: PropTypes.string,
/**
* See [OutlinedLabel#label](/api/outlined-input/#props)
* See [OutlinedInput#label](/api/outlined-input/#props)
*/
labelWidth: PropTypes.number,
/**
Expand Down

0 comments on commit bde4d89

Please sign in to comment.