diff options
Diffstat (limited to 'src/client/views/nodes/LinkMenuItem.tsx')
-rw-r--r-- | src/client/views/nodes/LinkMenuItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkMenuItem.tsx b/src/client/views/nodes/LinkMenuItem.tsx index 486e3dc9b..732e6de84 100644 --- a/src/client/views/nodes/LinkMenuItem.tsx +++ b/src/client/views/nodes/LinkMenuItem.tsx @@ -35,7 +35,7 @@ export class LinkMenuItem extends React.Component<LinkMenuItemProps> { if (DocumentManager.Instance.getDocumentView(this.props.destinationDoc)) { DocumentManager.Instance.jumpToDocument(this.props.destinationDoc, e.altKey); } else { - CollectionDockingView.Instance.AddRightSplit(this.props.destinationDoc); + CollectionDockingView.Instance.AddRightSplit(this.props.destinationDoc, undefined); } } |