From 5a4e3e7f2efcd6c3a291adcd3ec6fa154b3a9151 Mon Sep 17 00:00:00 2001 From: Daniel Kos Date: Tue, 7 Aug 2018 15:01:14 +0200 Subject: [PATCH 1/1] Fix workbench errors due to missing auth service No issue # Arvados-DCO-1.1-Signed-off-by: Daniel Kos --- src/index.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 467aee08..aac275f9 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -33,7 +33,7 @@ addMenuActionSet(ContextMenuKind.RESOURCE, resourceActionSet); addMenuActionSet(ContextMenuKind.FAVORITE, favoriteActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES, collectionFilesActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES_ITEM, collectionFilesItemActionSet); -addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); +addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); fetchConfig() .then(config => { @@ -44,15 +44,16 @@ fetchConfig() store.dispatch(initAuth()); store.dispatch(getProjectList(services.authService.getUuid())); - const Token = (props: any) => ; + const TokenComponent = (props: any) => ; + const WorkbenchComponent = (props: any) => ; const App = () =>
- - + +
-- 2.30.2