From ea6c679b2169c45d8837983a602115100bb20e41 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Mon, 27 Jan 2025 12:16:52 +0100 Subject: [PATCH] :bug: Fix click on the project name goes to blank dashboard from workspace (#5668) --- frontend/playwright/ui/specs/workspace.spec.js | 17 +++++++++++++++++ .../src/app/main/ui/workspace/left_header.cljs | 4 +++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/frontend/playwright/ui/specs/workspace.spec.js b/frontend/playwright/ui/specs/workspace.spec.js index bb3dcffe8..43673cb37 100644 --- a/frontend/playwright/ui/specs/workspace.spec.js +++ b/frontend/playwright/ui/specs/workspace.spec.js @@ -320,3 +320,20 @@ test("[Taiga #9929] Paste text in workspace", async ({ page, context }) => { .getByRole("textbox") .getByText("Lorem ipsum dolor"); }); + +test("Bug 9877, user navigation to dashboard from header goes to blank page", async ({ + page, +}) => { + const workspacePage = new WorkspacePage(page); + await workspacePage.setupEmptyFile(page); + + await workspacePage.goToWorkspace(); + + const popupPromise = page.waitForEvent("popup"); + await page.getByText("Drafts").click(); + + const popup = await popupPromise; + await expect(popup).toHaveURL( + /&project-id=c7ce0794-0992-8105-8004-38e630f7920b/, + ); +}); diff --git a/frontend/src/app/main/ui/workspace/left_header.cljs b/frontend/src/app/main/ui/workspace/left_header.cljs index 3694fad7a..82b819efd 100644 --- a/frontend/src/app/main/ui/workspace/left_header.cljs +++ b/frontend/src/app/main/ui/workspace/left_header.cljs @@ -32,6 +32,7 @@ (let [profile (mf/deref refs/profile) file-id (:id file) file-name (:name file) + project-id (:id project) team-id (:team-id project) shared? (:is-shared file) @@ -78,7 +79,8 @@ nav-to-project (mf/use-fn - #(st/emit! (dcm/go-to-dashboard-files ::rt/new-window true)))] + (mf/deps project-id) + #(st/emit! (dcm/go-to-dashboard-files ::rt/new-window true :project-id project-id)))] (mf/with-effect [editing?] (when ^boolean editing?