Fix custom emoji selection (#39088)

This commit is contained in:
Claire
2026-05-20 09:23:29 +02:00
committed by GitHub
parent fcf012c602
commit f28715d370
2 changed files with 2 additions and 2 deletions

View File

@@ -671,7 +671,7 @@ export function selectComposeSuggestion(position, token, suggestion, path) {
let completion, startPosition;
if (suggestion.type === 'emoji') {
completion = suggestion.native || suggestion.colons;
completion = suggestion.native || `:${suggestion.id}:`;
startPosition = position - 1;
dispatch(useEmoji(suggestion));

View File

@@ -228,7 +228,7 @@ class EmojiPickerMenuImpl extends PureComponent {
handleClick = (emoji, event) => {
if (!emoji.native) {
emoji.native = emoji.colons;
emoji.native = `:${emoji.id}:`;
}
if (!(event.ctrlKey || event.metaKey)) {