[ARVADOS-WORKBENCH2] updated: 1.3.1-419-g610b2dbf

Git user git at public.curoverse.com
Fri Mar 15 07:49:57 EDT 2019


Summary of changes:
 src/components/data-table-filters/data-table-filters-popover.tsx | 2 +-
 src/components/data-table/data-table.tsx                         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

       via  610b2dbfb87aaa68ff4f26db2f5d8054b03ece1e (commit)
      from  85c036ce886647c28ceebeefdf6db026c96a3a68 (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 610b2dbfb87aaa68ff4f26db2f5d8054b03ece1e
Author: Michal Klobukowski <michal.klobukowski at contractors.roche.com>
Date:   Fri Mar 15 12:49:40 2019 +0100

    refs #14971
    Disable redundant keyboard navigation on filter and sort icons
    
    Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski at contractors.roche.com>

diff --git a/src/components/data-table-filters/data-table-filters-popover.tsx b/src/components/data-table-filters/data-table-filters-popover.tsx
index 28cf4c22..3bd7991c 100644
--- a/src/components/data-table-filters/data-table-filters-popover.tsx
+++ b/src/components/data-table-filters/data-table-filters-popover.tsx
@@ -110,7 +110,7 @@ export const DataTableFiltersPopover = withStyles(styles)(
                         onClick={this.open}
                         disableRipple>
                         {children}
-                        <IconButton component='span' classes={{root: classes.iconButton}}>
+                        <IconButton component='span' classes={{root: classes.iconButton}} tabIndex={-1}>
                             <i className={classnames(["fas fa-filter", classes.icon])}
                                 data-fa-transform="shrink-3"
                                 ref={this.icon} />
diff --git a/src/components/data-table/data-table.tsx b/src/components/data-table/data-table.tsx
index 3cce8f3d..e1309793 100644
--- a/src/components/data-table/data-table.tsx
+++ b/src/components/data-table/data-table.tsx
@@ -126,7 +126,7 @@ export const DataTable = withStyles(styles)(
         }
 
         ArrowIcon = ({className, ...props}: SvgIconProps) => (
-            <IconButton component='span' className={this.props.classes.arrowButton}>
+            <IconButton component='span' className={this.props.classes.arrowButton} tabIndex={-1}>
                 <ArrowDownwardIcon {...props} className={classnames(className, this.props.classes.arrow)}/>
             </IconButton>
         )

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list