mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-03 05:53:40 +01:00
Fix: support cyrillic characters in quicklaunch (#3020)
This commit is contained in:
parent
abce57379d
commit
68e4b98ddb
@ -225,7 +225,7 @@ function Home({ initialSettings }) {
|
||||
if (e.target.tagName === "BODY" || e.target.id === "inner_wrapper") {
|
||||
if (
|
||||
(e.key.length === 1 &&
|
||||
e.key.match(/(\w|\s|[à-ü]|[À-Ü])/g) &&
|
||||
e.key.match(/(\w|\s|[à-ü]|[À-Ü]|[\w\u0430-\u044f])/gi) &&
|
||||
!(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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user