diff options
| author | Jude <julie_wang1@brown.edu> | 2019-03-10 13:29:58 -0400 |
|---|---|---|
| committer | Jude <julie_wang1@brown.edu> | 2019-03-10 13:29:58 -0400 |
| commit | 8145fd3bcd2abeb8f8c0e819e365b90e7227b8b3 (patch) | |
| tree | 2a3c59d51ec7fd12fb993f85d33f07e5396fa984 /src/client/views/collections/CollectionFreeFormView.tsx | |
| parent | 43c96800f0a651247fdcaf2c77c710a30cb3f79d (diff) | |
| parent | 6b63817dc2936ebec82b67600b33845a82c7fe99 (diff) | |
merged and added audio/video nodes
Diffstat (limited to 'src/client/views/collections/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionFreeFormView.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/collections/CollectionFreeFormView.tsx b/src/client/views/collections/CollectionFreeFormView.tsx index 782313e55..16002ad9f 100644 --- a/src/client/views/collections/CollectionFreeFormView.tsx +++ b/src/client/views/collections/CollectionFreeFormView.tsx @@ -1,4 +1,4 @@ -import { action, computed, observable } from "mobx"; +import { action, computed, observable, reaction, trace } from "mobx"; import { observer } from "mobx-react"; import { Document } from "../../../fields/Document"; import { FieldWaiting } from "../../../fields/Field"; @@ -25,6 +25,7 @@ import "./CollectionFreeFormView.scss"; import { COLLECTION_BORDER_WIDTH } from "./CollectionView"; import { CollectionViewBase } from "./CollectionViewBase"; import React = require("react"); +import { render } from "pug"; const JsxParser = require('react-jsx-parser').default;//TODO Why does this need to be imported like this? @observer @@ -282,7 +283,6 @@ export class CollectionFreeFormView extends CollectionViewBase { } render() { - //determines whether preview text cursor should be visible (ie when user taps this collection it should) let cursor = null; if (this._previewCursorVisible) { @@ -319,4 +319,4 @@ export class CollectionFreeFormView extends CollectionViewBase { </div> ); } -}
\ No newline at end of file +} |
