File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ export const WorkspaceBuildPageView: FC<WorkspaceBuildPageViewProps> = ({
104
104
label = "Workspace"
105
105
value = {
106
106
< Link
107
- to = { `/@${ build . workspace_owner_name } /${ build . workspace_name } ` }
107
+ to = { `/@${ build . workspace_owner_username } /${ build . workspace_name } ` }
108
108
>
109
109
{ build . workspace_name }
110
110
</ Link >
@@ -158,7 +158,7 @@ export const WorkspaceBuildPageView: FC<WorkspaceBuildPageViewProps> = ({
158
158
{ builds ?. map ( ( build ) => (
159
159
< Link
160
160
key = { build . id }
161
- to = { `/@${ build . workspace_owner_name } /${ build . workspace_name } /builds/${ build . build_number } ` }
161
+ to = { `/@${ build . workspace_owner_username } /${ build . workspace_name } /builds/${ build . build_number } ` }
162
162
>
163
163
< SidebarItem active = { build . build_number === activeBuildNumber } >
164
164
< WorkspaceBuildData build = { build } />
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export const HistorySidebar: FC<HistorySidebarProps> = ({ workspace }) => {
35
35
< SidebarLink
36
36
target = "_blank"
37
37
key = { build . id }
38
- to = { `/@${ build . workspace_owner_name } /${ build . workspace_name } /builds/${ build . build_number } ` }
38
+ to = { `/@${ build . workspace_owner_username } /${ build . workspace_name } /builds/${ build . build_number } ` }
39
39
>
40
40
< WorkspaceBuildData build = { build } />
41
41
</ SidebarLink >
You can’t perform that action at this time.
0 commit comments