summaryrefslogtreecommitdiff
path: root/frontend/app/views/graph/graph.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/views/graph/graph.container.js')
-rw-r--r--frontend/app/views/graph/graph.container.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/app/views/graph/graph.container.js b/frontend/app/views/graph/graph.container.js
index 34c3d9d..57ea205 100644
--- a/frontend/app/views/graph/graph.container.js
+++ b/frontend/app/views/graph/graph.container.js
@@ -16,6 +16,7 @@ import PageEdit from './components/page.edit'
import GraphHeader from './components/graph.header'
import GraphEditor from './components/graph.editor'
import AudioList from './components/audio.list'
+import CursorList from './components/cursor.list'
class GraphContainer extends Component {
componentDidMount() {
@@ -65,6 +66,7 @@ class GraphContainer extends Component {
{this.props.graph.editor.addingPage && <PageNew />}
{this.props.graph.editor.editingPage && <PageEdit />}
{this.props.graph.editor.showingAudio && <AudioList />}
+ {this.props.graph.editor.showingCursors && <CursorList />}
</div>
</div>
</div>