Skip to content

Commit

Permalink
Fix trailing 2-dots after validating stickers
Browse files Browse the repository at this point in the history
  • Loading branch information
7PH committed Dec 27, 2023
1 parent 7e499b9 commit c2567b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/client/src/components/message/NewMessageForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ function onOpen(key) {
}));
} else if (key === ':') {
autoSuggestItems.value = Object.entries(client.state.stickers).map(([name, sticker]) => ({
value: name.substring(1),
value: name,
searchText: name,
label: name,
url: sticker,
Expand Down

0 comments on commit c2567b1

Please sign in to comment.