Skip to content
Snippets Groups Projects
Unverified Commit b78ce926 authored by Fredrik Jonsson's avatar Fredrik Jonsson Committed by GitHub
Browse files

Merge pull request #2510 from HyphaApp/bug/Fix-cursor-position-in-rich-text-editor

Fix cursor position in Rich text editor
parents 61a6fcf0 4c8cc0fc
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