Typo in options label for select field

This commit is contained in:
Don Stephan
2021-11-04 20:13:17 -05:00
committed by GitHub
parent e3e41c3621
commit f67286be7b

View File

@@ -15,7 +15,7 @@ keywords: select, multi-select, fields, config, configuration, documentation, Co
| Option | Description |
| ---------------- | ----------- |
| **`name`** * | To be used as the property name when stored and retrieved from the database. |
| **`options`** * | Array of options to allow the field to store. Can either be an array of strings, or an array of objects containing an `option` string and a `value` string. |
| **`options`** * | Array of options to allow the field to store. Can either be an array of strings, or an array of objects containing an `label` string and a `value` string. |
| **`hasMany`** | Boolean when, if set to `true`, allows this field to have many selections instead of only one. |
| **`label`** | Used as a field label in the Admin panel and to name the generated GraphQL type. |
| **`unique`** | Enforce that each entry in the Collection has a unique value for this field. |