aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionBaseView.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-07-25 22:27:26 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-07-25 22:27:26 -0400
commit3ee8a9ebc760e3049b692efad0d6edfb877342cf (patch)
tree1e100fd957c539cd4fd513758f567b8c96a174f5 /src/client/views/collections/CollectionBaseView.tsx
parent834ea7588594df80524e9775a5b2637b90e41293 (diff)
fixed dragging annotaitons on images. fixed border rounding of buttons. fixed dropping to ignore document titles.
Diffstat (limited to 'src/client/views/collections/CollectionBaseView.tsx')
-rw-r--r--src/client/views/collections/CollectionBaseView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionBaseView.tsx b/src/client/views/collections/CollectionBaseView.tsx
index 72faf52c4..c39caec24 100644
--- a/src/client/views/collections/CollectionBaseView.tsx
+++ b/src/client/views/collections/CollectionBaseView.tsx
@@ -124,7 +124,7 @@ export class CollectionBaseView extends React.Component<CollectionViewProps> {
@action.bound
moveDocument(doc: Doc, targetCollection: Doc, addDocument: (doc: Doc) => boolean): boolean {
let self = this;
- let targetDataDoc = this.props.fieldExt || this.props.Document.isTemplate ? this.extensionDoc : this.props.Document;
+ let targetDataDoc = this.props.Document;
if (Doc.AreProtosEqual(targetDataDoc, targetCollection)) {
//if (Doc.AreProtosEqual(this.extensionDoc, targetCollection)) {
return true;