From c4fc2b6bcce0ec24aefd43ee619a74c96a157aa3 Mon Sep 17 00:00:00 2001 From: joshwooding <12938082+joshwooding@users.noreply.github.com> Date: Wed, 4 Mar 2020 21:21:44 +0000 Subject: [PATCH] Add link --- docs/pages/api-docs/select.md | 2 +- packages/material-ui/src/Select/Select.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/api-docs/select.md b/docs/pages/api-docs/select.md index 433b886962ddca..9d2c229b4d3e47 100644 --- a/docs/pages/api-docs/select.md +++ b/docs/pages/api-docs/select.md @@ -34,7 +34,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | inputProps | object | | [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. | | label | node | | See [OutlinedLabel#label](/api/outlined-input/#props) | | labelId | string | | The ID of an element that acts as an additional label. The Select will be labelled by the additional label and the selected value. | -| labelWidth | number | 0 | See OutlinedLabel#label | +| labelWidth | number | 0 | See [OutlinedLabel#label](/api/outlined-input/#props) | | MenuProps | object | | Props applied to the [`Menu`](/api/menu/) element. | | multiple | bool | false | If `true`, `value` must be an array and the menu will support multiple selections. | | native | bool | false | If `true`, the component will be using a native `select` element. | diff --git a/packages/material-ui/src/Select/Select.js b/packages/material-ui/src/Select/Select.js index 39c9ed2ec6c786..8c249e3c5e9425 100644 --- a/packages/material-ui/src/Select/Select.js +++ b/packages/material-ui/src/Select/Select.js @@ -152,7 +152,7 @@ Select.propTypes = { */ labelId: PropTypes.string, /** - * See OutlinedLabel#label + * See [OutlinedLabel#label](/api/outlined-input/#props) */ labelWidth: PropTypes.number, /**