8000 feat(site): display devcontainer start error by DanielleMaywood · Pull Request #18637 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat(site): display devcontainer start error #18637

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

Merged
merged 11 commits into from
Jun 30, 2025
Prev Previous commit
Next Next commit
chore: add error story
  • Loading branch information
DanielleMaywood committed Jun 30, 2025
commit 59bdadec5595ae6edd2ce1ea79a5c27a503d5f50
9 changes: 9 additions & 0 deletions site/src/modules/resources/AgentDevcontainerCard.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ const meta: Meta<typeof AgentDevcontainerCard> = {
export default meta;
type Story = StoryObj<typeof AgentDevcontainerCard>;

export const HasError: Story = {
args: {
devcontainer: {
...MockWorkspaceAgentDevcontainer,
error: "unable to inject devcontainer with agent",
},
},
};

export const NoPorts: Story = {};

export const WithPorts: Story = {
Expand Down
Loading
0