diff --git a/ui2/src/features/nodes/components/Commander/DocumentsByTypeCommander/DocumentRow.tsx b/ui2/src/features/nodes/components/Commander/DocumentsByTypeCommander/DocumentRow.tsx index 6fef0c0cc..1df4a1731 100644 --- a/ui2/src/features/nodes/components/Commander/DocumentsByTypeCommander/DocumentRow.tsx +++ b/ui2/src/features/nodes/components/Commander/DocumentsByTypeCommander/DocumentRow.tsx @@ -30,7 +30,7 @@ export default function DocumentRow({doc}: Args) { const onClick = (e: React.MouseEvent) => { e.preventDefault() - if (e.ctrlKey) { + if (e.ctrlKey || e.altKey) { dispatch( currentNodeChanged({id: doc.id, ctype: "document", panel: "secondary"}) )