From 48bd3ef05044ad46891faff4f2650b7ffaf8a523 Mon Sep 17 00:00:00 2001 From: "Weng Khing, Wong" Date: Mon, 9 Dec 2024 23:36:27 +0800 Subject: [PATCH] fix(tracker): edit workflow status redirect (#7392) Signed-off-by: Weng Khing --- plugins/tracker-resources/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tracker-resources/src/index.ts b/plugins/tracker-resources/src/index.ts index 086587f69e..b46bea9337 100644 --- a/plugins/tracker-resources/src/index.ts +++ b/plugins/tracker-resources/src/index.ts @@ -229,7 +229,7 @@ async function move (issues: Issue | Issue[]): Promise { async function editWorkflowStatuses (project: Project): Promise { const loc = getCurrentLocation() loc.path[2] = settingId - loc.path[3] = 'statuses' + loc.path[3] = 'spaceTypes' loc.path[4] = project.type navigate(loc) }