aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/WebBox.tsx
diff options
context:
space:
mode:
authorgeireann <geireann.lindfield@gmail.com>2023-08-24 12:10:07 -0400
committergeireann <geireann.lindfield@gmail.com>2023-08-24 12:10:07 -0400
commit859d2d942b7766ed8052ff66be991e4d593982ff (patch)
treed2a88dc028cb471d47ab1801540e73d1d00d1115 /src/client/views/nodes/WebBox.tsx
parentf2101ee3d60baa8a3ca4fd7fee7dc96ed2ed6645 (diff)
fixed gpt anno to not create an anchor unless actually requeted.
Diffstat (limited to 'src/client/views/nodes/WebBox.tsx')
-rw-r--r--src/client/views/nodes/WebBox.tsx5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx
index a1e46b69b..febf8341e 100644
--- a/src/client/views/nodes/WebBox.tsx
+++ b/src/client/views/nodes/WebBox.tsx
@@ -358,11 +358,6 @@ export class WebBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProps
AnchorMenu.Instance.jumpTo(e.clientX * scale + mainContBounds.translateX, e.clientY * scale + mainContBounds.translateY - NumCast(this.layoutDoc._layout_scrollTop) * scale);
// Changing which document to add the annotation to (the currently selected WebBox)
GPTPopup.Instance.setSidebarId(`${this.props.fieldKey}_${this._urlHash}_sidebar`);
- const anchor = this._getAnchor(undefined, false);
- if (anchor) {
- console.log(anchor);
- GPTPopup.Instance.setTargetAnchor(anchor);
- }
GPTPopup.Instance.addDoc = this.sidebarAddDocument;
}
}