diff options
Diffstat (limited to 'app/client/dashboard/dashboard.component.js')
| -rw-r--r-- | app/client/dashboard/dashboard.component.js | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/app/client/dashboard/dashboard.component.js b/app/client/dashboard/dashboard.component.js index c74c4df..d9aece1 100644 --- a/app/client/dashboard/dashboard.component.js +++ b/app/client/dashboard/dashboard.component.js @@ -14,10 +14,12 @@ import { FileList } from '../common/fileList.component' import Gallery from '../common/gallery.component' import * as dashboardActions from './dashboard.actions' +import actions from '../actions' class Dashboard extends Component { constructor(props){ super() + actions.task.index() } componentWillUpdate(nextProps) { // if (nextProps.opt.checkpoint_name && nextProps.opt.checkpoint_name !== this.props.opt.checkpoint_name) { @@ -38,20 +40,6 @@ class Dashboard extends Component { <TaskList tasks={queue} /> </Group> </div> - <div className='column'> - <Group title='Your Datasets'> - <FileList files={files} /> - </Group> - <Group title='Results'> - <FileList files={files} /> - </Group> - <Group title='Audio Player'> - <FileList files={files} /> - </Group> - </div> - </div> - <div> - <Gallery images={images} /> </div> </div> ) |
