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.
Escape
PluginDetailLoader
1 parent ab8fe1b commit 7a0d3c8Copy full SHA for 7a0d3c8
1 file changed
packages/devtools-vite/src/app/pages/session/[session].vue
@@ -42,13 +42,16 @@ onKeyDown('Escape', (e) => {
42
if (!e.isTrusted || e.repeat)
43
return
44
45
- const { module, asset } = route.query
+ const { module, asset, plugin } = route.query
46
47
if (module)
48
closeFlowPanel()
49
50
if (asset)
51
closeAssetPanel()
52
+
53
+ if (plugin)
54
+ closePluginPanel()
55
})
56
57
useSideNav(() => {
0 commit comments