Improve checkboxes visibility implementation
[arvados-workbench2.git] / src / views / workbench / workbench.tsx
index dd68cb8f8ca5ffc472a33fd7dd3616fbd5e32f68..b89ee04ab82f48cb2cdff3ff39aca568023c5b88 100644 (file)
@@ -93,11 +93,22 @@ export const WorkbenchPanel =
                         </Grid>
                         <Grid item xs className={classes.content}>
                             <p>Projects only</p>
-                            <ProjectsTreePicker pickerId="testPicker1"/>
+                            <ProjectsTreePicker 
+                                pickerId="testPicker1" 
+                                showSelection/>
                             <p>Collections included</p>
-                            <ProjectsTreePicker pickerId="testPicker2" includeCollections/>
+                            <ProjectsTreePicker
+                                pickerId="testPicker2"
+                                includeCollections
+                                showSelection
+                            />
                             <p>Files included</p>
-                            <ProjectsTreePicker pickerId="testPicker3" includeCollections includeFiles toggleItemActive={(...args: any[]) => console.log(args)}/>
+                            <ProjectsTreePicker
+                                pickerId="testPicker3"
+                                includeCollections
+                                includeFiles
+                                showSelection
+                                toggleItemActive={(...args: any[]) => console.log(args)} />
                             <Switch>
                                 <Route path={Routes.PROJECTS} component={ProjectPanel} />
                                 <Route path={Routes.COLLECTIONS} component={CollectionPanel} />