Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/Editor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class WysiwygEditor extends Component {
const newState = {};
const { editorState, contentState } = this.props;
if (!this.state.toolbar) {
const toolbar = mergeRecursive(defaultToolbar, toolbar);
const toolbar = mergeRecursive(defaultToolbar, this.state.toolbar);
newState.toolbar = toolbar;
}
if (
Expand Down Expand Up @@ -216,9 +216,14 @@ class WysiwygEditor extends Component {
decorators.push(
...getMentionDecorators({
...this.props.mention,
onChange: this.onChange,
onChange: this.props?.mention?.onChange ? (editorState, selectedSuggestion) => {
this.props.mention.onChange(selectedSuggestion, editorState);
this.onChange(editorState);
} : this.onChange,
getEditorState: this.getEditorState,
getSuggestions: this.getSuggestions,
getSuggestions: this.props?.mention?.getSuggestions ? (mentionText) => {
return this.props.mention.getSuggestions(mentionText)
} : this.getSuggestions,
getWrapperRef: this.getWrapperRef,
modalHandler: this.modalHandler,
})
Expand Down
Loading