Skip to content

Commit dc35093

Browse files
committed
2 parents 426ba73 + b9fd582 commit dc35093

File tree

8 files changed

+24914
-24874
lines changed

8 files changed

+24914
-24874
lines changed

CHANGELOG.JSON

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
{
22
"versions": [
3+
{
4+
"version": "3.2.0",
5+
"changes": {
6+
"new": [],
7+
"enhancements": [],
8+
"fixes": [
9+
"Documentation for `RichText`: correct event handler name [#898](https://github.com/pnp/sp-dev-fx-controls-react/pull/898)",
10+
"`SitePicker`: `SitePicker` does not display initialsites until you click the dropdown to select [#895](https://github.com/pnp/sp-dev-fx-controls-react/issues/895)"
11+
]
12+
},
13+
"contributions": [
14+
"[Ravichandran Krishnasamy](https://github.com/ravichandran-blog)"
15+
]
16+
},
317
{
418
"version": "3.1.0",
519
"changes": {

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Releases
22

3+
## 3.2.0
4+
5+
### Fixes
6+
7+
- Documentation for `RichText`: correct event handler name [#898](https://github.com/pnp/sp-dev-fx-controls-react/pull/898)
8+
- `SitePicker`: `SitePicker` does not display initialsites until you click the dropdown to select [#895](https://github.com/pnp/sp-dev-fx-controls-react/issues/895)
9+
10+
### Contributors
11+
12+
Special thanks to our contributor: [Ravichandran Krishnasamy](https://github.com/ravichandran-blog).
13+
314
## 3.1.0
415

516
### New control(s)

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Releases
22

3+
## 3.2.0
4+
5+
### Fixes
6+
7+
- Documentation for `RichText`: correct event handler name [#898](https://github.com/pnp/sp-dev-fx-controls-react/pull/898)
8+
- `SitePicker`: `SitePicker` does not display initialsites until you click the dropdown to select [#895](https://github.com/pnp/sp-dev-fx-controls-react/issues/895)
9+
10+
### Contributors
11+
12+
Special thanks to our contributor: [Ravichandran Krishnasamy](https://github.com/ravichandran-blog).
13+
314
## 3.1.0
415

516
### New control(s)

docs/documentation/docs/controls/RichText.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { RichText } from "@pnp/spfx-controls-react/lib/RichText";
1717

1818
```TypeScript
1919
<RichText value={this.props.value}
20-
onChange={(text)=>this.props.onChange(text)}
20+
onChange={(text)=>this.onTextChange(text)}
2121
/>
2222
```
2323

0 commit comments

Comments
 (0)