From 425a9687b585517385d0ae5d62c5de26e06d3193 Mon Sep 17 00:00:00 2001 From: Janicki Artur Date: Fri, 23 Nov 2018 08:56:45 +0100 Subject: [PATCH] refs #14523 hide sharing for private workflow Arvados-DCO-1.1-Signed-off-by: Janicki Artur --- src/views-components/data-explorer/renderers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views-components/data-explorer/renderers.tsx b/src/views-components/data-explorer/renderers.tsx index d0266adc..87ba73ff 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -92,7 +92,7 @@ export const resourceShare = (dispatch: Dispatch, uuidPrefix: string, ownerUuid? const isPublic = ownerUuid === getPublicUuid(uuidPrefix); return (
- { !isPublic && uuid && + { isPublic && uuid && dispatch(openSharingDialog(uuid))}> -- 2.30.2