aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/Main.tsx
diff options
context:
space:
mode:
authorAndrew Kim <andrewdkim@users.noreply.github.com>2019-04-08 17:06:24 -0400
committerAndrew Kim <andrewdkim@users.noreply.github.com>2019-04-08 17:06:24 -0400
commit52b30ce1ba6748c1d0a0f8697df3e66c53b2c315 (patch)
treec0f8a201d93e1484037a1a2f4fab291ae6a21bdc /src/client/views/Main.tsx
parent1d7a74172bf91ddc58a68b4a2f6edf1fb5cff99d (diff)
Timeline Grapical Change
Diffstat (limited to 'src/client/views/Main.tsx')
-rw-r--r--src/client/views/Main.tsx8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx
index 767ecf314..ec868bb7b 100644
--- a/src/client/views/Main.tsx
+++ b/src/client/views/Main.tsx
@@ -51,7 +51,7 @@ import '../northstar/utils/Extensions'
import { HistogramOperation } from '../northstar/operations/HistogramOperation';
import { AttributeTransformationModel } from '../northstar/core/attribute/AttributeTransformationModel';
import { ColumnAttributeModel } from '../northstar/core/attribute/AttributeModel';
-import {Timeline} from './nodes/Timeline'
+import { Timeline } from './nodes/Timeline'
@observer
export class Main extends React.Component {
// dummy initializations keep the compiler happy
@@ -304,11 +304,6 @@ export class Main extends React.Component {
}
- @computed
- get timeline(){
- return <Timeline/>
- }
-
render() {
let workspaceMenu: any = null;
let workspaces = this.userDocument.GetT<ListField<Document>>(KeyStore.Workspaces, ListField);
@@ -333,7 +328,6 @@ export class Main extends React.Component {
{this.nodesMenu}
{this.miscButtons}
{workspaceMenu}
- {this.timeline}
<InkingControl />
</div>
);