[ARVADOS-WORKBENCH2] updated: 1.1.4-105-g7364c06

Git user git at public.curoverse.com
Tue Jun 19 07:50:48 EDT 2018


Summary of changes:
 src/components/data-explorer/data-explorer.tsx | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

       via  7364c06cd354952de2d469aa6285b7624864acf7 (commit)
      from  04895cf6825dab872f91bf86941b51d5b00cb39a (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 7364c06cd354952de2d469aa6285b7624864acf7
Author: Michal Klobukowski <michal.klobukowski at contractors.roche.com>
Date:   Tue Jun 19 13:50:32 2018 +0200

    Add close menu call when handling conext menu action
    
    Feature #13634
    
    Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski at contractors.roche.com>

diff --git a/src/components/data-explorer/data-explorer.tsx b/src/components/data-explorer/data-explorer.tsx
index 40d6ae6..026820b 100644
--- a/src/components/data-explorer/data-explorer.tsx
+++ b/src/components/data-explorer/data-explorer.tsx
@@ -178,7 +178,10 @@ class DataExplorer extends React.Component<DataExplorerProps, DataExplorerState>
     }
 
     handleContextAction(action: keyof DataExplorerContextActions) {
-        return (item: DataItem) => this.props.contextActions[action](item);
+        return (item: DataItem) => {
+            this.closeContextMenu();
+            this.props.contextActions[action](item);
+        };
     }
 
 }

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list