diff options
author | bobzel <zzzman@gmail.com> | 2020-09-03 17:13:11 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-03 17:13:11 -0400 |
commit | 7f6f5acc59e772cb828b8e532e16d4c40465de65 (patch) | |
tree | df892fbaeebbe9bb34a423c9675922c013494651 /src/client/views/linking/LinkMenuGroup.tsx | |
parent | 3ba4d0b56b5a0428d1b363ee05b419b954a2b071 (diff) |
changed linkMenuItem follow behavior to work when one link is an annotation -- now it will follow to the link endpoint that is not an annotation
Diffstat (limited to 'src/client/views/linking/LinkMenuGroup.tsx')
-rw-r--r-- | src/client/views/linking/LinkMenuGroup.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/linking/LinkMenuGroup.tsx b/src/client/views/linking/LinkMenuGroup.tsx index 2ae87ac13..8e09052a3 100644 --- a/src/client/views/linking/LinkMenuGroup.tsx +++ b/src/client/views/linking/LinkMenuGroup.tsx @@ -66,7 +66,8 @@ export class LinkMenuGroup extends React.Component<LinkMenuGroupProps> { } render() { - const groupItems = this.props.group.map(linkDoc => { + const set = new Set<Doc>(this.props.group); + const groupItems = Array.from(set.keys()).map(linkDoc => { const destination = LinkManager.Instance.getOppositeAnchor(linkDoc, this.props.sourceDoc) || LinkManager.Instance.getOppositeAnchor(linkDoc, Cast(linkDoc.anchor2, Doc, null).annotationOn === this.props.sourceDoc ? Cast(linkDoc.anchor2, Doc, null) : Cast(linkDoc.anchor1, Doc, null)); if (destination && this.props.sourceDoc) { |