Skip to content

Commit 4096570

Browse files
committed
🧹
1 parent 6ad1dfe commit 4096570

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

site/src/modules/resources/AppLink/AppLink.stories.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,3 +151,15 @@ export const InternalApp: Story = {
151151
agent: MockWorkspaceAgent,
152152
},
153153
};
154+
155+
export const BlockingStartupScriptRunning: Story = {
156+
args: {
157+
workspace: MockWorkspace,
158+
app: MockWorkspaceApp,
159+
agent: {
160+
...MockWorkspaceAgent,
161+
lifecycle_state: "starting",
162+
startup_script_behavior: "blocking",
163+
},
164+
},
165+
};

site/src/modules/resources/AppLink/AppLink.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import { ShareIcon } from "./ShareIcon";
1616
export const DisplayAppNameMap: Record<TypesGen.DisplayApp, string> = {
1717
port_forwarding_helper: "Ports",
1818
ssh_helper: "SSH",
19-
vscode: "VS Code",
20-
vscode_insiders: "VS Code Insiders",
19+
vscode: "VS Code (Remote)",
20+
vscode_insiders: "VS Code Insiders (Remote)",
2121
web_terminal: "Terminal",
2222
};
2323

0 commit comments

Comments
 (0)