Fix inserting emojis from emoji picker fails with TypeError (#27647)
This commit is contained in:
parent
277e6968f5
commit
ac8e4ed38d
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
|
||||
handleEmojiPick = (data) => {
|
||||
const { text } = this.props;
|
||||
const position = this.textarea.selectionStart;
|
||||
const position = this.textareaRef.current.selectionStart;
|
||||
const needsSpace = data.custom && position > 0 && !allowedAroundShortCode.includes(text[position - 1]);
|
||||
|
||||
this.props.onPickEmoji(position, data, needsSpace);
|
||||
|
|
Loading…
Reference in a new issue