16719: Removes console debug message.
authorLucas Di Pentima <lucas@di-pentima.com.ar>
Tue, 20 Oct 2020 21:42:30 +0000 (18:42 -0300)
committerLucas Di Pentima <lucas@di-pentima.com.ar>
Tue, 20 Oct 2020 21:42:30 +0000 (18:42 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas@di-pentima.com.ar>

src/store/open-in-new-tab/open-in-new-tab.actions.ts

index 42bdc4ccfe5c25de8a33e277b0d34a4c81f24b98..17ba740279993029b5e5f197c289ef2af33e625f 100644 (file)
@@ -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