Marlon Maxwel

Results 21 comments of Marlon Maxwel

@SevenZark @Sandeep3005 view my solution: https://github.com/facebook/draft-js/issues/989#issuecomment-332522174

any solution @max-winderbaum? In last release this error is present.

Video bug: https://www.youtube.com/watch?v=EV-U8CS2qdk This error only occurs when I initialize the state from my store with this: ```javascript componentWillReceiveProps(props) { const content = stateFromHTML(props.value || '') this.setState({ editorState: EditorState.createWithContent(content) })...

@colinjeanne you have guidance or examples for me to do that workaround you said and solve my problem in this moment?

I fix this bug in my project, with: ```javascript componentWillMount() { const { value } = this.props this.state = { editorState: this.getCreatedEditorState(value) } } componentWillReceiveProps(nextProps) { const { value }...

@againksy the imports are: ```javascript import { stateFromHTML } from 'draft-js-import-html' import { stateToHTML } from 'draft-js-export-html' ``` I use stateToHTML in: ```javascript onChange(editorState) { const content = editorState.getCurrentContent() const...

@diegohaz with this PR the correct is: **before** `foo-name.jsx = FooName.jsx` `foo.jsx = Foo.jsx` **after** `foo-name.jsx = foo-name.jsx` `foo.jsx = foo.jsx`

> Actually, the solution is to remove all dependencies to `jest-canvas-dom` and install `canvas` instead, that's it. Node takes care of the rest. The test above works just fine after...

Really update for Bootstrap 3 is important. We have components in our company documentation almost all broken by visually not support Bootstrap 3. Soon we will have Bootstrap 4. I...

My partial solution was: In mouseenter I add the hover class and mouseleave I remove the hover class.