diff options
| author | real-zephex <[email protected]> | 2024-06-12 00:15:58 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-06-12 00:15:58 +0530 |
| commit | 8335a9661f8f553b5e8d894fb2e167184eca09bb (patch) | |
| tree | 3b14b44a6f38f1c93c981bb344a0e79661c4667f /src/app/manga/components/inputContainer.jsx | |
| parent | Merge pull request #44 from real-zephex/dependabot/npm_and_yarn/eslint-9.4.0 (diff) | |
| download | dramalama-8335a9661f8f553b5e8d894fb2e167184eca09bb.tar.xz dramalama-8335a9661f8f553b5e8d894fb2e167184eca09bb.zip | |
🚀 feat(download): implement direct manga downloads
Diffstat (limited to 'src/app/manga/components/inputContainer.jsx')
| -rw-r--r-- | src/app/manga/components/inputContainer.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/manga/components/inputContainer.jsx b/src/app/manga/components/inputContainer.jsx index 10b0a73..55ab970 100644 --- a/src/app/manga/components/inputContainer.jsx +++ b/src/app/manga/components/inputContainer.jsx @@ -103,7 +103,7 @@ const MangaSearchBox = () => { setMangaSearchedTitle(event.target.value); }} onKeyDown={async (event) => { - if (event.key !== "Control") { + if (event.key === "Enter" || event.code === "Enter") { await GetResults(); } }} |