diff options
author | bobzel <zzzman@gmail.com> | 2020-09-09 23:21:05 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-09 23:21:05 -0400 |
commit | 5a4dad460f611cb8138faf08796dda4763f4daf4 (patch) | |
tree | ce34398091e8f382491d3196ab1a47bba9d6486a /src/client/views/linking/LinkMenu.tsx | |
parent | e650f4dddb6a5f30b8eac0c6097cead28e04cd48 (diff) |
fixed linkEditor menu to show up in the right place. fixed linklines to attach properly.
Diffstat (limited to 'src/client/views/linking/LinkMenu.tsx')
-rw-r--r-- | src/client/views/linking/LinkMenu.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/linking/LinkMenu.tsx b/src/client/views/linking/LinkMenu.tsx index f5a1ae8e7..3b4912d3d 100644 --- a/src/client/views/linking/LinkMenu.tsx +++ b/src/client/views/linking/LinkMenu.tsx @@ -96,7 +96,7 @@ export class LinkMenu extends React.Component<Props> { <div className="linkMenu-list" > {this.renderAllGroups(groups)} </div> : - <div className="linkMenu-listEditor" style={{ left: this.position.x, top: this.position.b + 15 }}> + <div className="linkMenu-listEditor"> <LinkEditor sourceDoc={this.props.docView.props.Document} linkDoc={this._editingLink} showLinks={action(() => this._editingLink = undefined)} /> </div> |