fix focus update on toolbar block click

This commit is contained in:
Shawn Erquhart 2017-07-26 20:06:53 -04:00
parent 6443f5d808
commit 4ac63954ca

View File

@ -500,7 +500,7 @@ export default class Editor extends Component {
handleBlockClick = (event, type) => { handleBlockClick = (event, type) => {
event.preventDefault(); event.preventDefault();
let { editorState } = this.state; let { editorState } = this.state;
const transform = editorState.transform().focus(); const transform = editorState.transform();
const doc = editorState.document; const doc = editorState.document;
const isList = this.hasBlock('list-item') const isList = this.hasBlock('list-item')
@ -538,7 +538,7 @@ export default class Editor extends Component {
} }
} }
const resolvedState = transform.apply(); const resolvedState = transform.focus().apply();
this.ref.onChange(resolvedState); this.ref.onChange(resolvedState);
this.setState({ editorState: resolvedState }); this.setState({ editorState: resolvedState });
}; };