aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocuLinkBox.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-02-21 20:03:26 -0500
committerBob Zeleznik <zzzman@gmail.com>2020-02-21 20:03:26 -0500
commit26e07daa8f319c79df342e1e7f5f632c5794992f (patch)
treeca10514e4d07e40d99e39f672c6f1dfe135a6769 /src/client/views/nodes/DocuLinkBox.tsx
parentba31e8581df2341db4bbe4077005664da28888e9 (diff)
fixed zindex of link editor box
Diffstat (limited to 'src/client/views/nodes/DocuLinkBox.tsx')
-rw-r--r--src/client/views/nodes/DocuLinkBox.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocuLinkBox.tsx b/src/client/views/nodes/DocuLinkBox.tsx
index aa620658c..882e57006 100644
--- a/src/client/views/nodes/DocuLinkBox.tsx
+++ b/src/client/views/nodes/DocuLinkBox.tsx
@@ -82,6 +82,7 @@ export class DocuLinkBox extends DocComponent<FieldViewProps, DocLinkSchema>(Doc
onClick = (e: React.MouseEvent) => {
if (!this._doubleTap) {
this._editing = true;
+ this.props.ContainingCollectionDoc && this.props.bringToFront(this.props.ContainingCollectionDoc, false);
if (!this.props.Document.onClick && !this._isOpen) {
this._timeout = setTimeout(action(() => {
if (Math.abs(e.clientX - this._downX) < 3 && Math.abs(e.clientY - this._downY) < 3 && (e.button !== 2 && !e.ctrlKey && this.props.Document.isButton)) {