Skip to content

feat: update workspace button text to show 'Open VS Code in Browser' #18921

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/src/pages/WorkspacesPage/WorkspacesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ const WorkspaceApps: FC<WorkspaceAppsProps> = ({ workspace }) => {
<BaseIconLink
key="vscode"
isLoading={!token}
label="Open VSCode"
label="Open VS Code in Browser"
href={getVSCodeHref("vscode", {
owner: workspace.owner_name,
workspace: workspace.name,
Expand All @@ -752,7 +752,7 @@ const WorkspaceApps: FC<WorkspaceAppsProps> = ({ workspace }) => {
buttons.push(
<BaseIconLink
key="vscode-insiders"
label="Open VSCode Insiders"
label="Open VS Code Insiders in Browser"
isLoading={!token}
href={getVSCodeHref("vscode-insiders", {
owner: workspace.owner_name,
Expand Down
Loading