We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad640d commit 551bd98Copy full SHA for 551bd98
src/controls/webPartTitle/WebPartTitle.tsx
@@ -54,7 +54,7 @@ export class WebPartTitle extends React.Component<IWebPartTitleProps, {}> {
54
<div className={styles.webPartTitle} style={{ color: color }}>
55
{
56
this.props.displayMode === DisplayMode.Edit && (
57
- <textarea placeholder={this.props.placeholder ? this.props.placeholder : strings.WebPartTitlePlaceholder} aria-label={strings.WebPartTitleLabel} onChange={this._onChange} value={this.props.title} />
+ <textarea placeholder={this.props.placeholder ? this.props.placeholder : strings.WebPartTitlePlaceholder} aria-label={strings.WebPartTitleLabel} onChange={this._onChange} defaultValue={this.props.title} />
58
)
59
}
60
0 commit comments