aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/LinkMenu.tsx
diff options
context:
space:
mode:
authorFawn <fangrui_tong@brown.edu>2019-06-11 18:17:28 -0400
committerFawn <fangrui_tong@brown.edu>2019-06-11 18:17:28 -0400
commit2c3b54d6e07c37a4f5fd52a49d6d60e7a8e5d2d2 (patch)
tree26eb8d1a5575a409b5627be07d2c1a24ffc352c7 /src/client/views/nodes/LinkMenu.tsx
parent074b4b2a3246ae86fda334629d40540dd2bbf633 (diff)
metadata types can be assigned to groups of links
Diffstat (limited to 'src/client/views/nodes/LinkMenu.tsx')
-rw-r--r--src/client/views/nodes/LinkMenu.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkMenu.tsx b/src/client/views/nodes/LinkMenu.tsx
index e378ee1cb..21b5807ae 100644
--- a/src/client/views/nodes/LinkMenu.tsx
+++ b/src/client/views/nodes/LinkMenu.tsx
@@ -38,7 +38,6 @@ export class LinkMenu extends React.Component<Props> {
let destination = LinkUtils.findOppositeAnchor(link, source);
let doc = FieldValue(Cast(destination, Doc));
if (doc) {
- console.log(doc[Id] + source[Id], "source is", source[Id]);
return <LinkBox key={doc[Id] + source[Id]} linkDoc={link} linkName={StrCast(destination.title)} pairedDoc={doc} showEditor={action(() => this._editingLink = link)} type={""} />;
}
});