feat: require at least two characters to autocomplete emoji (#298)

This commit is contained in:
bree
2021-10-31 18:36:38 -04:00
committed by GitHub
parent a74ea9c0f7
commit 7b140d1467

View File

@@ -79,7 +79,9 @@ export function useAutoComplete(
if (current === ":" || current === "@" || current === "#") { if (current === ":" || current === "@" || current === "#") {
const search = content.slice(j + 1, content.length); const search = content.slice(j + 1, content.length);
if (search.length > 0) { const minLen = current === ":" ? 2 : 1
if (search.length >= minLen) {
return [ return [
current === "#" current === "#"
? "channel" ? "channel"