diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-15 22:31:57 -0500 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-15 22:31:57 -0500 |
commit | 89204d74d2a5014b4e241973b1bdb8461ed4f78c (patch) | |
tree | 4bf58acfdad603375953b2de3610dc946e569b71 /src/stores/NodeCollectionStore.ts | |
parent | 3de39e2608e62a278b9c8cc37b53333f0877fa59 (diff) |
More stuff set up
Diffstat (limited to 'src/stores/NodeCollectionStore.ts')
-rw-r--r-- | src/stores/NodeCollectionStore.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/NodeCollectionStore.ts b/src/stores/NodeCollectionStore.ts index b6f2ef8e0..ac4f515f1 100644 --- a/src/stores/NodeCollectionStore.ts +++ b/src/stores/NodeCollectionStore.ts @@ -1,6 +1,6 @@ import { computed, observable, action } from "mobx"; import { NodeStore } from "./NodeStore"; -import { DocumentController } from "../controllers/DocumentController"; +import { Document } from "../fields/Document"; export class NodeCollectionStore extends NodeStore { @@ -11,7 +11,7 @@ export class NodeCollectionStore extends NodeStore { public Nodes: NodeStore[] = new Array<NodeStore>(); @observable - public Docs: DocumentController[] = []; + public Docs: Document[] = []; @computed public get Transform(): string { |