Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a8074c0

Browse files
committed
Fix redirect to workspace from projects page
1 parent a3cb43e commit a8074c0

File tree

1 file changed

+1
-1
lines changed
  • site/pages/projects/[organization]/[project]

1 file changed

+1
-1
lines changed

site/pages/projects/[organization]/[project]/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const ProjectPage: React.FC = () => {
6262
key: "name",
6363
name: "Name",
6464
renderer: (nameField: string, data: Workspace) => {
65-
return <Link href={`/projects/${organization}/${project}/${data.id}`}>{nameField}</Link>
65+
return <Link href={`/workspaces/me/${nameField}`}>{nameField}</Link>
6666
},
6767
},
6868
]

0 commit comments

Comments
 (0)