8000 fix: handle workspace errors by AbhineetJain · Pull Request #3341 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: handle workspace errors #3341

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 13 commits into from
Aug 5, 2022
Merged
Prev Previous commit
fix lint
  • Loading branch information
AbhineetJain committed Aug 3, 2022
commit dfd346b2709782ad32d509462fe82ae3d575021b
6 changes: 5 additions & 1 deletion site/src/xServices/workspace/workspaceXService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,11 @@ export const workspaceMachine = createMachine(
src: "cancelWorkspace",
onDone: {
target: "idle",
actions: ["assignCancellationMessage", "displayCancellationMessage", "refreshTimeline"],
actions: [
"assignCancellationMessage",
"displayCancellationMessage",
"refreshTimeline",
],
},
onError: {
target: "idle",
Expand Down
0