fix(docs-widgets-list): fix code indentation (#4879)

This commit is contained in:
Claire Annan 2021-01-27 05:40:23 -05:00 committed by GitHub
parent e6a0530023
commit 2f99b10e35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ The select widget allows you to pick a string value from a dropdown menu.
* `multiple`: accepts a boolean; defaults to `false`
* `min`: minimum number of items; ignored if **multiple** is `false`
* `max`: maximum number of items; ignored if **multiple** is `false`
* **Example** (options as strings):
```yaml
@ -34,6 +35,7 @@ The select widget allows you to pick a string value from a dropdown menu.
```yaml
align: "center"
```
* **Example** (options as objects):
```yaml
@ -51,6 +53,7 @@ The select widget allows you to pick a string value from a dropdown menu.
```yaml
airport-code: "ORD"
```
* **Example** (multiple):
```yaml
@ -61,6 +64,7 @@ The select widget allows you to pick a string value from a dropdown menu.
options: ["Design", "UX", "Dev"]
default: ["Design"]
```
* **Example** (min/max):
```yaml