spelling: native

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-12-26 17:49:07 -05:00
parent 24d5aaedb6
commit 5a1ab6c006
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ export default defineComponent({
if (emoji.native) {
ctx.emit('update:modelValue', `${modelValue.value.slice(0, current)}${emoji.native} ${modelValue.value.slice(current)}`)
} else {
// Custom emoji don't have natvie code
// Custom emoji don't have native code
ctx.emit('update:modelValue', `${modelValue.value.slice(0, current)}${emoji.name} ${modelValue.value.slice(current)}`)
}
closeSuggest()