We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Search.tsx
document.addEventListener('keypress', (ev) => { if (ev.key === 's' || ev.key === '/') { const input = document.querySelector('#animegarden-search input'); // @ts-ignore input?.focus(); ev.preventDefault(); ev.stopPropagation(); } });
输入s或者/会focus到input上用于快速输入,我认为主页的搜索框无法输入s的行为很怪异 不确认这是否是有意的行为,所以我没有提交为bug issue
可以保留/
No response
The text was updated successfully, but these errors were encountered:
/ 和我的插件 (Vimium C) 冲突了,故意加了一个 s。
/
s
确实输入 s 坏了
改成:
ctrl + k
ctrl + p
PR Welcome :)
Sorry, something went wrong.
判一下是否已经 focus 到搜索框,未 focus 就 focus,否则正常输入
感觉这个更适合 fork之后发现已经更新成这个逻辑了XD
fix(app): can not input s and /
de2d935
No branches or pull requests
Clear and concise description of the problem
Search.tsx
输入s或者/会focus到input上用于快速输入,我认为主页的搜索框无法输入s的行为很怪异
不确认这是否是有意的行为,所以我没有提交为bug issue
Suggested solution
可以保留/
Additional context
No response
The text was updated successfully, but these errors were encountered: