Skip to content

Commit bf5e70e

Browse files
committed
fix of #949
1 parent 4649a71 commit bf5e70e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controls/richText/RichText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export class RichText extends React.Component<IRichTextProps, IRichTextState> {
381381
<TextField label={strings.TextToDisplayLabel}
382382
value={this.state.insertUrlText}
383383
onChange={(e, newValue?: string) => {
384-
if (newValue !== this.state.insertUrl) {
384+
if (newValue !== this.state.insertUrlText) {
385385
this.setState({
386386
insertUrlText: newValue
387387
});

0 commit comments

Comments
 (0)