Skip to content

Commit 550c22d

Browse files
committed
feat: update workspace button text to show 'Open VS Code in Browser'
Updated the button labels on the /workspaces page to clearly indicate that VS Code opens in the browser, matching the UI mockup provided.
1 parent f47efc6 commit 550c22d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/pages/WorkspacesPage/WorkspacesTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ const WorkspaceApps: FC<WorkspaceAppsProps> = ({ workspace }) => {
734734
<BaseIconLink
735735
key="vscode"
736736
isLoading={!token}
737-
label="Open VSCode"
737+
label="Open VS Code in Browser"
738738
href={getVSCodeHref("vscode", {
739739
owner: workspace.owner_name,
740740
workspace: workspace.name,
@@ -752,7 +752,7 @@ const WorkspaceApps: FC<WorkspaceAppsProps> = ({ workspace }) => {
752752
buttons.push(
753753
<BaseIconLink
754754
key="vscode-insiders"
755-
label="Open VSCode Insiders"
755+
label="Open VS Code Insiders in Browser"
756756
isLoading={!token}
757757
href={getVSCodeHref("vscode-insiders", {
758758
owner: workspace.owner_name,

0 commit comments

Comments
 (0)