aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-04-09 14:28:36 -0400
committerbobzel <zzzman@gmail.com>2021-04-09 14:28:36 -0400
commitf7879dfb8086fc9819861b69a34127d6237f407b (patch)
tree6311a1a310fb5121e90d267b0d14ba1d40301755
parentebf301a8382e01fa3463f7295bfba175b905e59e (diff)
fixed : in lightbox view from creating a document
-rw-r--r--src/client/views/collections/CollectionStackingViewFieldColumn.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingViewFieldColumn.tsx b/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
index bee7aeb87..47733994b 100644
--- a/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
+++ b/src/client/views/collections/CollectionStackingViewFieldColumn.tsx
@@ -235,7 +235,7 @@ export class CollectionStackingViewFieldColumn extends React.Component<CSVFieldC
}
});
const pt = this.props.screenToLocalTransform().inverse().transformPoint(x, y);
- ContextMenu.Instance.displayMenu(x, y);
+ ContextMenu.Instance.displayMenu(x, y, undefined, true);
}
@computed get innards() {
TraceMobx();