fix(tracker): edit workflow status redirect (#7392)

Signed-off-by: Weng Khing <wengkhing@gmail.com>
This commit is contained in:
Weng Khing, Wong 2024-12-09 23:36:27 +08:00 committed by GitHub
parent bb24943d45
commit 48bd3ef050
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -229,7 +229,7 @@ async function move (issues: Issue | Issue[]): Promise<void> {
async function editWorkflowStatuses (project: Project): Promise<void> {
const loc = getCurrentLocation()
loc.path[2] = settingId
loc.path[3] = 'statuses'
loc.path[3] = 'spaceTypes'
loc.path[4] = project.type
navigate(loc)
}