diff options
author | bob <bcz@cs.brown.edu> | 2019-03-18 10:05:57 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-03-18 10:05:57 -0400 |
commit | b2c3389ce819093d1d6dbc205977f6455057d715 (patch) | |
tree | 83ca372d4eae5d1b1eb64c1fc3c67a21cfaa883f | |
parent | c63f1d12b379f788b8065416519ee05c78e7f23a (diff) |
fixed issue with drag drop of aliases
-rw-r--r-- | src/client/views/collections/CollectionViewBase.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionViewBase.tsx b/src/client/views/collections/CollectionViewBase.tsx index f3a75dad5..320838904 100644 --- a/src/client/views/collections/CollectionViewBase.tsx +++ b/src/client/views/collections/CollectionViewBase.tsx @@ -92,6 +92,7 @@ export class CollectionViewBase extends React.Component<SubCollectionViewProps> } }) ); + de.data["document"] = doc; this.props.addDocument(doc); } else if (docView) { if (doc && docView.props.RemoveDocument && docView.props.ContainingCollectionView !== this.props.CollectionView) { |