Skip to content

Commit

Permalink
[dashboard] StartWorkspace: Map "Go to Dashboard" to /workspaces (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
geropl authored and roboquat committed Nov 17, 2022
1 parent 9e45cb0 commit 460b87d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/dashboard/src/start/StartWorkspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ export default class StartWorkspace extends React.Component<StartWorkspaceProps,
},
{
title: "Go to Dashboard",
href: gitpodHostUrl.asDashboard().toString(),
href: gitpodHostUrl.asWorkspacePage().toString(),
target: "_parent",
},
]}
Expand Down Expand Up @@ -611,7 +611,7 @@ export default class StartWorkspace extends React.Component<StartWorkspaceProps,
</div>
</div>
<div className="mt-10 flex justify-center">
<a target="_parent" href={gitpodHostUrl.asDashboard().toString()}>
<a target="_parent" href={gitpodHostUrl.asWorkspacePage().toString()}>
<button className="secondary">Go to Dashboard</button>
</a>
</div>
Expand Down Expand Up @@ -656,7 +656,7 @@ export default class StartWorkspace extends React.Component<StartWorkspaceProps,
</div>
<PendingChangesDropdown workspaceInstance={this.state.workspaceInstance} />
<div className="mt-10 justify-center flex space-x-2">
<a target="_parent" href={gitpodHostUrl.asDashboard().toString()}>
<a target="_parent" href={gitpodHostUrl.asWorkspacePage().toString()}>
<button className="secondary">Go to Dashboard</button>
</a>
<a
Expand Down

0 comments on commit 460b87d

Please sign in to comment.