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
make fmt
  • Loading branch information
f0ssel committed Jun 9, 2022
commit cbfc0f80f12d9616e7c45a67c46cc8a35f26ed4e
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,13 @@ export const CreateWorkspacePageView: FC<CreateWorkspacePageViewProps> = (props)
<FullPageForm title="Create workspace" onCancel={props.onCancel}>
<form onSubmit={form.handleSubmit}>
<Stack>
<TextField disabled fullWidth label={Language.templateLabel} value={props.selectedTemplate?.name || props.templateName} variant="outlined" />
<TextField
disabled
fullWidth
label={Language.templateLabel}
value={props.selectedTemplate?.name || props.templateName}
variant="outlined"
/>

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