8000 refactor: Update create workspace flow to allow creation from the workspaces page by BrunoQuaresma · Pull Request #1684 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

refactor: Update create workspace flow to allow creation from the workspaces page #1684

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
May 24, 2022
Prev Previous commit
Next Next commit
Move buttons to condition
  • Loading branch information
BrunoQuaresma committed May 23, 2022
commit ef436841e787f782ba2699331ce8d727bf8c6b70
4 changes: 2 additions & 2 deletions site/src/pages/CreateWorkspacePage/CreateWorkspacePageView.tsx 84AB
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ export const CreateWorkspacePageView: React.FC<CreateWorkspacePageViewProps> = (
))}
</div>
)}

<FormFooter onCancel={props.onCancel} isLoading={props.creatingWorkspace} />
</>
)}

<FormFooter onCancel={props.onCancel} isLoading={props.creatingWorkspace} />
</form>
</FullPageForm>
</Margins>
Expand Down
0