diff --git a/docs/documentation/docs/controls/ComboBoxListItemPicker.md b/docs/documentation/docs/controls/ComboBoxListItemPicker.md index 345cf2eb6..1660adc66 100644 --- a/docs/documentation/docs/controls/ComboBoxListItemPicker.md +++ b/docs/documentation/docs/controls/ComboBoxListItemPicker.md @@ -113,7 +113,7 @@ The `ComboBoxListItemPicker` control can be configured with the following proper | webUrl | string | yes | Url to web hosting list | | spHttpClient | RequestClient | yes | Any implementation of PnPJS RequestClient | | listId | string | yes | Guid or title of the list. | -| onSelectItem | (items: any[]) => void | yes | Callback function which returns the selected items. | +| onSelectedItem | (items: any[]) => void | yes | Callback function which returns the selected items. | | className | string | no | ClassName for the picker. | | defaultSelectedItems | any[] | no | Initial items that have already been selected and should appear in the people picker. Support objects and Ids only | | suggestionsHeaderText | string | no | The text that should appear at the top of the suggestion box. | diff --git a/docs/documentation/docs/controls/ListItemPicker.md b/docs/documentation/docs/controls/ListItemPicker.md index ed33441a2..0878d08d5 100644 --- a/docs/documentation/docs/controls/ListItemPicker.md +++ b/docs/documentation/docs/controls/ListItemPicker.md @@ -53,7 +53,7 @@ The `ListItemPicker` control can be configured with the following properties: | context | BaseComponentContext | yes | SPFx web part or extention context | | listId | string | yes | Guid or title of the list. | | itemLimit | number | yes | Number of items which can be selected | -| onSelectItem | (items: any[]) => void | yes | Callback function which returns the selected items. | +| onSelectedItem | (items: any[]) => void | yes | Callback function which returns the selected items. | | className | string | no | ClassName for the picker. | | webUrl | string | no | URL of the site. By default it uses the current site URL. | | defaultSelectedItems | any[] | no | Initial items that have already been selected and should appear in the people picker. |