[ARVADOS-WORKBENCH2] updated: 1.1.4-103-ga93f956

Git user git at public.curoverse.com
Tue Jun 19 05:51:54 EDT 2018


Summary of changes:
 src/components/data-explorer/context-menu.tsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

       via  a93f9562ce74d8cfb1cb7a5808e2b355e8e370c2 (commit)
      from  8b42552c3532c3c48237d8d71e6a3a0636a7c47e (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 a93f9562ce74d8cfb1cb7a5808e2b355e8e370c2
Author: Michal Klobukowski <michal.klobukowski at contractors.roche.com>
Date:   Tue Jun 19 11:51:38 2018 +0200

    Replace VoidFunction type with arrow functions
    
    Feature #13634
    
    Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski at contractors.roche.com>

diff --git a/src/components/data-explorer/context-menu.tsx b/src/components/data-explorer/context-menu.tsx
index 879214b..0b0a029 100644
--- a/src/components/data-explorer/context-menu.tsx
+++ b/src/components/data-explorer/context-menu.tsx
@@ -19,7 +19,7 @@ export interface ContextMenuActions {
 export interface ContextMenuProps {
     anchorEl?: HTMLElement;
     item?: DataItem;
-    onClose: VoidFunction;
+    onClose: () => void;
     actions: ContextMenuActions;
 }
 
@@ -36,7 +36,7 @@ export const ContextMenu: React.SFC<ContextMenuProps> = ({ anchorEl, onClose, ac
 interface ActionsProps {
     actions: ContextMenuActions;
     item?: DataItem;
-    onClose: VoidFunction;
+    onClose: () => void;
 }
 
 const Actions: React.SFC<ActionsProps> = ({ actions, item, onClose }) =>
@@ -90,7 +90,7 @@ interface ActionProps {
     item?: DataItem;
     icon: string;
     label: string;
-    onClose: VoidFunction;
+    onClose: () => void;
 }
 
 const Action: React.SFC<ActionProps> = ({ onClick, onClose, item, icon, label }) =>

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list