diff options
author | bob <bcz@cs.brown.edu> | 2019-05-14 18:59:32 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-05-14 18:59:32 -0400 |
commit | 281bfa589bd1ca66823003ca91cc11ce895fe5e2 (patch) | |
tree | 9380004d6bd4b7f8c6dbd497b9100b4142b869e4 /src/client/views/nodes/DocumentView.tsx | |
parent | 39e0f933fc446e70ae14006f8d9952822d798fe3 (diff) |
fixes for northstar
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index b7ad9249a..c97bcbd94 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -306,7 +306,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu cm.addItem({ description: "Find aliases", event: async () => { const aliases = await SearchUtil.GetAliasesOfDocument(this.props.Document); - CollectionDockingView.Instance.AddRightSplit(Docs.SchemaDocument(aliases, {})); + CollectionDockingView.Instance.AddRightSplit(Docs.SchemaDocument(["title"], aliases, {})); } }); cm.addItem({ description: "Copy URL", event: () => Utils.CopyText(DocServer.prepend("/doc/" + this.props.Document[Id])) }); |