mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 17:15:34 -08:00
Fix quick launch not opening with accented characters, decoding of characters in suggestions (#2802)
This commit is contained in:
@@ -224,7 +224,10 @@ function Home({ initialSettings }) {
|
||||
function handleKeyDown(e) {
|
||||
if (e.target.tagName === "BODY" || e.target.id === "inner_wrapper") {
|
||||
if (
|
||||
(e.key.length === 1 && e.key.match(/(\w|\s)/g) && !(e.altKey || e.ctrlKey || e.metaKey || e.shiftKey)) ||
|
||||
(e.key.length === 1 &&
|
||||
e.key.match(/(\w|\s|[à-ü]|[À-Ü])/g) &&
|
||||
!(e.altKey || e.ctrlKey || e.metaKey || e.shiftKey)) ||
|
||||
e.key.match(/([à-ü]|[À-Ü])/g) || // accented characters may require modifier keys
|
||||
(e.key === "v" && (e.ctrlKey || e.metaKey))
|
||||
) {
|
||||
setSearching(true);
|
||||
|
||||
Reference in New Issue
Block a user