Delete test input
authorMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Sat, 13 Oct 2018 15:54:03 +0000 (17:54 +0200)
committerMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Sat, 13 Oct 2018 15:54:03 +0000 (17:54 +0200)
Feature #14229

Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski@contractors.roche.com>

src/views/workbench/workbench.tsx

index 02bf4c9d5719f9c92a07585cfbef57fba8843866..09435d096c40ce940ead47f93397a91cf7bf4ea0 100644 (file)
@@ -80,22 +80,6 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
 
 type WorkbenchPanelProps = WithStyles<CssRules>;
 
-class TestInput extends React.Component {
-    state = {
-        values: ['asd']
-    };
-
-    handleChange = (values: string[]) => {
-        this.setState({ values });
-    }
-    render() {
-        return <ChipsInput
-            onChange={this.handleChange}
-            createNewValue={v => v}
-            values={this.state.values} />;
-    }
-}
-
 export const WorkbenchPanel =
     withStyles(styles)(({ classes }: WorkbenchPanelProps) =>
         <Grid container item xs className={classes.root}>
@@ -110,7 +94,6 @@ export const WorkbenchPanel =
                             <MainContentBar />
                         </Grid>
                         <Grid item xs className={classes.content}>
-                            <TestInput />
                             <Switch>
                                 <Route path={Routes.PROJECTS} component={ProjectPanel} />
                                 <Route path={Routes.COLLECTIONS} component={CollectionPanel} />