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 dd7b2d4 commit 8364c37Copy full SHA for 8364c37
‎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