mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 00:37:10 +02:00
fix(editor): Make shortcuts for toggling input/output panel work in the popped out log view (#19911)
This commit is contained in:
parent
83173fb04c
commit
8049da2971
|
|
@ -104,6 +104,14 @@ const keyMap = computed<KeyMap>(() => ({
|
|||
ArrowUp: selectPrev,
|
||||
Space: () => selected.value && toggleExpanded(selected.value),
|
||||
Enter: () => selected.value && handleOpenNdv(selected.value),
|
||||
...(isPoppedOut.value
|
||||
? {
|
||||
// We need shortcuts for toggling input/output panel in the pop-out window only
|
||||
// because these are also implemented in the canvas
|
||||
i: () => logsStore.toggleInputOpen(),
|
||||
o: () => logsStore.toggleOutputOpen(),
|
||||
}
|
||||
: {}),
|
||||
}));
|
||||
|
||||
function handleResizeOverviewPanelEnd() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user