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 43c7c0a commit 5253b05Copy full SHA for 5253b05
1 file changed
src/app/(flow)/namespace/[namespaceId]/project/[projectId]/flow/[flowId]/page.tsx
@@ -37,6 +37,12 @@ export default function Page() {
37
keyboardEvent.preventDefault()
38
}, [])
39
40
+ useHotkeys('shift+2', (keyboardEvent) => {
41
+ setTab(prevState => prevState === "execution" ? undefined : "execution")
42
+ keyboardEvent.stopPropagation()
43
+ keyboardEvent.preventDefault()
44
+ }, [])
45
+
46
React.useEffect(() => {
47
48
const localSelectedNode = reactFlow.getNodes().filter((node) => node.selected)[0] as Node | undefined
0 commit comments