From 12ea49bc57d5a16ab1159ec8096736124f499d94 Mon Sep 17 00:00:00 2001
From: Paul Kaplan <pkaplan@media.mit.edu>
Date: Wed, 19 Dec 2018 09:05:11 -0500
Subject: [PATCH] Open the editor view of the required project

---
 src/containers/tips-library.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/containers/tips-library.jsx b/src/containers/tips-library.jsx
index ced2f6aa0..76d5b46a6 100644
--- a/src/containers/tips-library.jsx
+++ b/src/containers/tips-library.jsx
@@ -52,7 +52,7 @@ class TipsLibrary extends React.PureComponent {
                 eventually we will find a solution that doesn't involve loading a whole project
         */
         if (item.requiredProjectId && (item.requiredProjectId !== this.props.projectId)) {
-            const urlParams = `/projects/${item.requiredProjectId}?tutorial=${item.urlId}`;
+            const urlParams = `/projects/${item.requiredProjectId}/editor?tutorial=${item.urlId}`;
             return window.open(window.location.origin + urlParams, '_blank');
         }
 
-- 
GitLab