diff --git a/public/scripts/slash-commands/SlashCommandAutoComplete.js b/public/scripts/slash-commands/SlashCommandAutoComplete.js index 9d5f5a55..84ebecd7 100644 --- a/public/scripts/slash-commands/SlashCommandAutoComplete.js +++ b/public/scripts/slash-commands/SlashCommandAutoComplete.js @@ -92,7 +92,7 @@ export class SlashCommandAutoComplete { textarea.addEventListener('keydown', (evt)=>this.handleKeyDown(evt)); textarea.addEventListener('click', ()=>this.isActive ? this.show() : null); textarea.addEventListener('selectionchange', ()=>this.show()); - // textarea.addEventListener('blur', ()=>this.hide()); + textarea.addEventListener('blur', ()=>this.hide()); if (isFloating) { textarea.addEventListener('scroll', ()=>this.updateFloatingPositionDebounced()); }