Skip to content
Snippets Groups Projects
Commit 4c8cc0fc authored by vimal1083's avatar vimal1083
Browse files

Fix cursor position in rich text editor

parent 183aab84
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,8 @@ exports[`Test tinymce component render a TinyMCE component 1`] = `
"menubar": false,
}
}
initialValue="abc"
onEditorChange={[Function]}
value="abc"
/>
</div>
`;
......@@ -57,8 +57,8 @@ exports[`Test tinymce component with required render a TinyMCE component with re
"menubar": false,
}
}
initialValue="abc"
onEditorChange={[Function]}
value="abc"
/>
</div>
`;
......@@ -13,7 +13,7 @@ const TinyMCE = props => {
</label>
<HelperComponent {...props.helperProps} />
<Editor
initialValue={props.value}
value={props.value}
init={{
...(props.init),
menubar: false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment