diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-06-20 22:22:57 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-06-20 22:22:57 -0400 |
| commit | ca5e29fdc7c238274eaf90682a8fa2ddc90e4e17 (patch) | |
| tree | 51d1d7ae289613447b232b673b6b859631ca565f /src/client/views/collections/CollectionTreeView.tsx | |
| parent | 38de022621175bda7410df4444fcd2bbee0919cb (diff) | |
fix to open on right, fix to image drag fro web, and layout fixes for stacking view multi-column
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index c51c16883..e7a3c4022 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -70,7 +70,7 @@ class TreeView extends React.Component<TreeViewProps> { } @undoBatch delete = () => this.props.deleteDoc(this.props.document); - @undoBatch openRight = async () => this.props.addDocTab(this.props.document, "openRight"); + @undoBatch openRight = async () => this.props.addDocTab(this.props.document, "onRight"); onPointerDown = (e: React.PointerEvent) => e.stopPropagation() onPointerEnter = (e: React.PointerEvent): void => { |
