Skip to content

Commit 645a54c

Browse files
committed
changelog, correct import for ListItemPicker and ComboBoxListItemPicker
1 parent fd00cea commit 645a54c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.JSON

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
{
22
"versions": [
3+
{
4+
"version": "1.18.0",
5+
"changes": {
6+
"new": [],
7+
"enhancements": [],
8+
"fixes": [
9+
"`ComboBoxListItemPicker` documentation fix: Updated import statement in docs for ComboBoxListItemPicker[#510](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/510)"
10+
]
11+
},
12+
"contributions": []
13+
},
314
{
415
"version": "1.17.0",
516
"changes": {

docs/documentation/docs/controls/ComboBoxListItemPicker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here is an example of the control:
1818
- Import the control into your component:
1919

2020
```TypeScript
21-
import { ComboBoxListItemPicker } from '@pnp/spfx-controls-react/lib/listItemPicker';
21+
import { ComboBoxListItemPicker } from '@pnp/spfx-controls-react/lib/ListItemPicker';
2222
```
2323
- Use the `ComboBoxListItemPicker` control in your code as follows:
2424

docs/documentation/docs/controls/ListItemPicker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Here is an example of the control:
1616
- Import the control into your component:
1717

1818
```TypeScript
19-
import { ListItemPicker } from '@pnp/spfx-controls-react/lib/listItemPicker';
19+
import { ListItemPicker } from '@pnp/spfx-controls-react/lib/ListItemPicker';
2020
```
2121
- Use the `ListItemPicker` control in your code as follows:
2222

0 commit comments

Comments
 (0)