mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
Merge branch 'main' into feature/require-mfa-by-admin
This commit is contained in:
commit
e5f4362b8f
|
@ -40,7 +40,11 @@ type KeyMatcher = (
|
||||||
*/
|
*/
|
||||||
function just(keyName: string): KeyMatcher {
|
function just(keyName: string): KeyMatcher {
|
||||||
return (event) => ({
|
return (event) => ({
|
||||||
isMatch: normalizeKey(event.key) === keyName,
|
isMatch:
|
||||||
|
normalizeKey(event.key) === keyName &&
|
||||||
|
!event.altKey &&
|
||||||
|
!event.ctrlKey &&
|
||||||
|
!event.metaKey,
|
||||||
priority: hotkeyPriority.singleKey,
|
priority: hotkeyPriority.singleKey,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user