diff --git a/src/editor/widgets/comment/TextEntryField.jsx b/src/editor/widgets/comment/TextEntryField.jsx index f025063..ba7726a 100644 --- a/src/editor/widgets/comment/TextEntryField.jsx +++ b/src/editor/widgets/comment/TextEntryField.jsx @@ -19,9 +19,8 @@ export default class TextEntryField extends Component { // Focus on render onRender = ref => { - if (ref && this.props.editable) { - ref.focus(); - } + if (ref && this.props.editable) + setTimeout(() => ref.focus(), 1); } render() {