diff --git a/noname/ui/create/index.js b/noname/ui/create/index.js index 60bed5759..a07476965 100644 --- a/noname/ui/create/index.js +++ b/noname/ui/create/index.js @@ -2034,8 +2034,9 @@ export class Create { } } }; - input.addEventListener("keyup", (e) => { + input.addEventListener("keydown", (e) => { if (e.key == "Enter") clickfind(e); + e.stopPropagation(); }); find.listen(clickfind); Searcher.appendChild(input);