[ARVADOS-WORKBENCH2] updated: 1.2.0-602-gbf56690

Git user git at public.curoverse.com
Thu Oct 11 09:54:23 EDT 2018


Summary of changes:
 src/components/checkbox-field/checkbox-field.tsx    | 15 +++------------
 src/views-components/search-bar/search-bar-view.tsx |  4 ++--
 2 files changed, 5 insertions(+), 14 deletions(-)

       via  bf566905797e0fc73029a21457590105838326af (commit)
      from  92b95f14a38a534f04d462d74792051ba6952638 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit bf566905797e0fc73029a21457590105838326af
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date:   Thu Oct 11 15:54:07 2018 +0200

    cr changes
    
    Feature #14308
    
    Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>

diff --git a/src/components/checkbox-field/checkbox-field.tsx b/src/components/checkbox-field/checkbox-field.tsx
index 48737ee..a5d5b28 100644
--- a/src/components/checkbox-field/checkbox-field.tsx
+++ b/src/components/checkbox-field/checkbox-field.tsx
@@ -4,18 +4,9 @@
 
 import * as React from 'react';
 import { WrappedFieldProps } from 'redux-form';
-import { ArvadosTheme } from '~/common/custom-theme';
-import { FormControlLabel, Checkbox, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core';
+import { FormControlLabel, Checkbox } from '@material-ui/core';
 
-type CssRules = 'checkboxField';
-
-const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
-    checkboxField: {
-
-    }
-});
-
-export const CheckboxField = withStyles(styles)((props: WrappedFieldProps & WithStyles<CssRules> & { label?: string }) =>
+export const CheckboxField = (props: WrappedFieldProps & { label?: string }) =>
     <FormControlLabel
         control={
             <Checkbox
@@ -25,4 +16,4 @@ export const CheckboxField = withStyles(styles)((props: WrappedFieldProps & With
                 color="primary" />
         }
         label={props.label} 
-    />);
\ No newline at end of file
+    />;
\ No newline at end of file
diff --git a/src/views-components/search-bar/search-bar-view.tsx b/src/views-components/search-bar/search-bar-view.tsx
index ebcacaf..8abd2aa 100644
--- a/src/views-components/search-bar/search-bar-view.tsx
+++ b/src/views-components/search-bar/search-bar-view.tsx
@@ -44,7 +44,7 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => {
         view: {
             position: 'absolute',
             width: '100%',
-            zIndex: 10000
+            zIndex: 1001
         }
     };
 };
@@ -126,7 +126,7 @@ export const SearchBarView = withStyles(styles)(
                             value={this.state.value}
                             fullWidth={true}
                             disableUnderline={true}
-                            onClick={() => openSearchView()}
+                            onClick={openSearchView}
                             endAdornment={
                                 <InputAdornment position="end">
                                     <Tooltip title='Search'>

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list