diff options
author | bob <bcz@cs.brown.edu> | 2019-03-18 12:57:36 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-03-18 12:57:36 -0400 |
commit | be117e38a63a558684baa69f719787f11dfc3be3 (patch) | |
tree | 8275d70be6aa728de3fea9af76b9422464143227 /src/client/views/collections/CollectionVideoView.tsx | |
parent | 8acbb6e31d913982e06b8498078b90bf99c18600 (diff) | |
parent | 861614569c2d72e0ee9a6a698f3978f609a3b2bc (diff) |
Merge branch 'master' into authentication
Diffstat (limited to 'src/client/views/collections/CollectionVideoView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionVideoView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionVideoView.tsx b/src/client/views/collections/CollectionVideoView.tsx index 8fc1a1b4d..05f759967 100644 --- a/src/client/views/collections/CollectionVideoView.tsx +++ b/src/client/views/collections/CollectionVideoView.tsx @@ -44,7 +44,7 @@ export class CollectionVideoView extends React.Component<CollectionViewProps> { public SelectedDocs: FieldId[] = [] public active: () => boolean = () => CollectionView.Active(this); - addDocument = (doc: Document): void => { CollectionView.AddDocument(this.props, doc); } + addDocument = (doc: Document, allowDuplicates: boolean): void => { CollectionView.AddDocument(this.props, doc, allowDuplicates); } removeDocument = (doc: Document): boolean => { return CollectionView.RemoveDocument(this.props, doc); } specificContextMenu = (e: React.MouseEvent): void => { |