Skip to content

fix: push create workspace UX to templates page #2142

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 12 commits into from
Jun 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
move loader
  • Loading branch information
f0ssel committed Jun 7, 2022
commit 0cbd76587c99a7650f73b78a2a88fd4365d8ce8d
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,10 @@ export const CreateWorkspacePageView: FC<CreateWorkspacePageViewProps> = (props)
return (
<FullPageForm title="Create workspace" onCancel={props.onCancel}>
<form onSubmit={form.handleSubmit}>
{props.loadingTemplates && <Loader />}

<Stack>
<TextField disabled fullWidth label={Language.templateLabel} value={props.templateName} variant="outlined" />

{props.loadingTemplateSchema && <Loader />}
{props.selectedTemplate && props.templateSchema && (
<>
<TextField
Expand Down