diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-03-12 11:21:34 -0500 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-03-12 11:21:34 -0500 |
commit | 9be5d339fa2e6d79a68f5265fa56f34ecf9a8141 (patch) | |
tree | 0fc5cb793bf1a3bee2f5e2d461a2286722a6f7b5 /src/fields/Doc.ts | |
parent | 983957cf513b355d043ad8a712475f344eb7b553 (diff) | |
parent | 2f5051296883d3473e2eb1df648d27a0102d04ed (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into filters
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index b0d77f0de..c05c5c4de 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -556,7 +556,6 @@ export namespace Doc { Doc.SetInPlace(copy, "title", (asBranch ? "BRANCH: " : "CLONE: ") + doc.title, true); asBranch ? (copy.branchOf = doc) : (copy.cloneOf = doc); if (!Doc.IsPrototype(copy)) { - console.log("ADDING: " + copy.title + " to " + doc.title + "'s branches"); Doc.AddDocToList(doc, "branches", Doc.GetProto(copy)); } cloneMap.set(doc[Id], copy); |