aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/LinkManager.ts
diff options
context:
space:
mode:
authordinhanhtruong <70963346+dinhanhtruong@users.noreply.github.com>2021-08-20 00:12:42 -0400
committerdinhanhtruong <70963346+dinhanhtruong@users.noreply.github.com>2021-08-20 00:12:42 -0400
commit8f77323d6be4d4e3537d2bc2bbe815e9d578eccb (patch)
treede7982fe48bbccca2805634df1b6b07b19439356 /src/client/util/LinkManager.ts
parenta4340dc70a52f45af18435e28d1a3f2a163d3379 (diff)
fixed bug where link colors reset on reload
need to fix new mystery bug where any new links disappear after refreshing once but re-appear after a second refrsh
Diffstat (limited to 'src/client/util/LinkManager.ts')
-rw-r--r--src/client/util/LinkManager.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/util/LinkManager.ts b/src/client/util/LinkManager.ts
index 175de0fa5..1fc0a7593 100644
--- a/src/client/util/LinkManager.ts
+++ b/src/client/util/LinkManager.ts
@@ -99,13 +99,13 @@ export class LinkManager {
public createLinkrelationshipLists = () => {
- const linkRelationshipList = new List<string>();
- const linkColorList = new List<string>();
- Doc.UserDoc().linkRelationshipList = linkRelationshipList;
- Doc.UserDoc().linkColorList = linkColorList;
- console.log(Doc.UserDoc().linkRelationshipList);
- console.log(Doc.UserDoc().linkColorList);
- //
+ //create new lists for link relations and their associated colors if the lists don't already exist
+ if (!Doc.UserDoc().linkRelationshipList && !Doc.UserDoc().linkColorList) {
+ const linkRelationshipList = new List<string>();
+ const linkColorList = new List<string>();
+ Doc.UserDoc().linkRelationshipList = linkRelationshipList;
+ Doc.UserDoc().linkColorList = linkColorList;
+ }
}
public addLink(linkDoc: Doc, checkExists = false) {