Skip to content

Commit 576ded9

Browse files
committed
Updated changelog
1 parent 7532c9a commit 576ded9

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.JSON

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@
66
"new": [],
77
"enhancements": [],
88
"fixes": [
9-
"New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)"
9+
"New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)",
10+
"Disabled property for PeoplePicker [#88](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/88)",
11+
"PeoplePicker property selectedItems not implemented? [#90](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/90)"
1012
]
1113
},
12-
"contributions": []
14+
"contributions": ["Octavie van Haaften"]
1315
},
1416
{
1517
"version": "1.5.0",

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
**Fixes**
66

77
- New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
8+
- Disabled property for PeoplePicker [#88](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/88)
9+
- PeoplePicker property selectedItems not implemented? [#90](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/90)
810

911
## 1.5.0
1012

docs/documentation/docs/about/release-notes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
**Fixes**
66

77
- New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
8+
- Disabled property for PeoplePicker [#88](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/88)
9+
- PeoplePicker property selectedItems not implemented? [#90](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/90)
810

911
## 1.5.0
1012

src/controls/peoplepicker/PeoplePickerComponent.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ export class PeoplePicker extends React.Component<IPeoplePickerProps, IPeoplePic
164164
if (selectedItems) {
165165
selectedItems(items);
166166
}
167-
168167
}
169168

170169
/**
@@ -255,8 +254,8 @@ export class PeoplePicker extends React.Component<IPeoplePickerProps, IPeoplePic
255254
}
256255

257256
/**
258-
* Default React component render method
259-
*/
257+
* Default React component render method
258+
*/
260259
public render(): React.ReactElement<IPeoplePickerProps> {
261260
const peoplepicker = (
262261
<div id="people" className={`${styles.defaultClass} ${this.props.peoplePickerWPclassName ? this.props.peoplePickerWPclassName : ''}`}>

0 commit comments

Comments
 (0)