We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2b91a commit 2f048efCopy full SHA for 2f048ef
‎ui/src/components/popovers/PasteModal.tsx‎
@@ -18,7 +18,7 @@ const hidKeyboardPayload = (keys: number[], modifier: number) => {
18
};
19
20
const modifierCode = (shift?: boolean, altRight?: boolean) => {
21
- return shift ? modifiers["ShiftLeft"] : 0
+ return (shift ? modifiers["ShiftLeft"] : 0)
22
| (altRight ? modifiers["AltRight"] : 0)
23
}
24
const noModifier = 0
0 commit comments