diff options
author | kimdahey <claire_kim1@brown.edu> | 2019-09-12 16:19:09 -0400 |
---|---|---|
committer | kimdahey <claire_kim1@brown.edu> | 2019-09-12 16:19:09 -0400 |
commit | 8c0643bab365b58af25101345b209bacc49a955b (patch) | |
tree | ae80ca67a90dbad37f6acc4de008b50b1da1a457 /src/client/views/linking/LinkFollowBox.tsx | |
parent | 5f9aad860613575510400e07889f5dc3dda95de5 (diff) |
self healing links established (?!)
Diffstat (limited to 'src/client/views/linking/LinkFollowBox.tsx')
-rw-r--r-- | src/client/views/linking/LinkFollowBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/linking/LinkFollowBox.tsx b/src/client/views/linking/LinkFollowBox.tsx index 009c3ac55..0a3c8a320 100644 --- a/src/client/views/linking/LinkFollowBox.tsx +++ b/src/client/views/linking/LinkFollowBox.tsx @@ -268,7 +268,7 @@ export class LinkFollowBox extends React.Component<FieldViewProps> { jumpToDoc.linkHref = Utils.prepend("/doc/" + StrCast(LinkFollowBox.sourceDoc[Id])); let newguid = Utils.GenerateGuid(); LinkFollowBox.linkDoc.guid = newguid; - jumpToDoc.linkHref = Utils.prepend("/doc/" + StrCast(LinkFollowBox.sourceDoc[Id])); + jumpToDoc.linkHref = Utils.prepend("/doc/" + StrCast(LinkFollowBox.linkDoc[Id])); LinkFollowBox.destinationDoc.guid = newguid; // if we find a link that doesnt match a guid but matches the OG link ref that correspond to the original anchor, then we move forward } |