Closed jonrohan closed 3 years ago
There's a bug when trying to use a symbol like Control+Shift+` as the hotkey. See https://github.com/github/github/pull/175242#discussion_r603640676
Control+Shift+`
Because of this line, ` doesn't have an uppercase value.
I'm trying to fix by checking the KeyboardEvent.code https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code value for "Key" which should be alpha numeric.
KeyboardEvent.code
🎉
There's a bug when trying to use a symbol like
Control+Shift+`
as the hotkey. See https://github.com/github/github/pull/175242#discussion_r603640676Because of this line, ` doesn't have an uppercase value.
I'm trying to fix by checking the
KeyboardEvent.code
https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code value for "Key" which should be alpha numeric.