You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The key in the case of alt+a is å, and I suspect is also variable depending on keyboard settings. Probably shouldn't depend on key for parsing key combos?
The text was updated successfully, but these errors were encountered:
Environment
Code Sandbox
https://stackblitz.com/edit/vitejs-vite-vsbugp?file=src%2FCoreExample.tsx
Steps to reproduce
alt+a
Actual behavior
Nothing happens.
Expected behavior
Alert appears.
Possible solution
This line swapped the key combo parsing to use
event.key
instead ofevent.which
: https://github.com/palantir/blueprint/pull/6106/files#diff-fec59d61737971c807d9d0b765c8d0c3ba1d1f1880cdd4b3a652ab0789d016dbR169The
key
in the case ofalt+a
iså
, and I suspect is also variable depending on keyboard settings. Probably shouldn't depend onkey
for parsing key combos?The text was updated successfully, but these errors were encountered: