aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2019-08-01 02:30:47 -0400
committerSam Wilkins <samwilkins333@gmail.com>2019-08-01 02:30:47 -0400
commitec224416fc454c7fdbb62943408226c973d8c751 (patch)
treedce5148dd4160c4dff8a3bb034a295fd54718585 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
parent5db091ba03d5dd13ffb984e85257c16a314d4c42 (diff)
fixed import ordering issue, allow for multiple targets and valid document types
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index 59c77f1c9..fa49e7175 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -123,14 +123,6 @@ export class CollectionFreeFormView extends CollectionSubView(PanZoomDocument) {
});
}
- constructor(props: SubCollectionViewProps) {
- super(props);
- let fixed = DictationManager.Instance.registerStatic;
- fixed(["Unset Fit To Container", "Set Fit To Container"], this.fitToContainer);
- fixed(["Arrange contents in grid"], this.arrangeContents);
- fixed(["Analyze Strokes"], this.analyzeStrokes);
- }
-
@computed get fieldExtensionDoc() {
return Doc.resolvedFieldDataDoc(this.props.DataDoc ? this.props.DataDoc : this.props.Document, this.props.fieldKey, "true");
}