diff options
author | bobzel <zzzman@gmail.com> | 2022-11-29 12:05:29 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-11-29 12:05:29 -0500 |
commit | c6d1059e24f362a167b9ac24e6f13d1e45361da9 (patch) | |
tree | a0136cee04608c73f54ac3ecd63bed0307a37fd4 /src/client/util/LinkManager.ts | |
parent | 1f5db9cfc594dbf337d752ec94dab5fca7d8b6f7 (diff) |
changes to streamline link editing UI (got rid of LinkEditor). cleaned up link (un)highlighting.
Diffstat (limited to 'src/client/util/LinkManager.ts')
-rw-r--r-- | src/client/util/LinkManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/LinkManager.ts b/src/client/util/LinkManager.ts index 49cc3218d..01f4df723 100644 --- a/src/client/util/LinkManager.ts +++ b/src/client/util/LinkManager.ts @@ -44,7 +44,7 @@ export class LinkManager { if (a1 instanceof Doc && a2 instanceof Doc && ((a1.author !== undefined && a2.author !== undefined) || link.author === Doc.CurrentUserEmail)) { Doc.GetProto(a1)[DirectLinksSym].add(link); Doc.GetProto(a2)[DirectLinksSym].add(link); - Doc.GetProto(link)[DirectLinksSym].add(link); + //Doc.GetProto(link)[DirectLinksSym].add(link); // bcz: links are not linked to themself, so this was a hack } }) ); |