From d9b30910f8a81ab1c9c860a00ea6c3d580d42051 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Tue, 20 Oct 2020 18:42:30 -0300 Subject: [PATCH] 16719: Removes console debug message. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- src/store/open-in-new-tab/open-in-new-tab.actions.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/store/open-in-new-tab/open-in-new-tab.actions.ts b/src/store/open-in-new-tab/open-in-new-tab.actions.ts index 42bdc4cc..17ba7402 100644 --- a/src/store/open-in-new-tab/open-in-new-tab.actions.ts +++ b/src/store/open-in-new-tab/open-in-new-tab.actions.ts @@ -19,10 +19,7 @@ export const openInNewTabAction = (resource: any) => (dispatch: Dispatch) => { if (kind === ResourceKind.COLLECTION) { dispatch(openInNewTabActions.OPEN_COLLECTION_IN_NEW_TAB(uuid)); - } - if (kind === ResourceKind.PROJECT) { + } else if (kind === ResourceKind.PROJECT) { dispatch(openInNewTabActions.OPEN_PROJECT_IN_NEW_TAB(uuid)); } - - console.log(uuid); }; \ No newline at end of file -- 2.30.2