File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
site/src/pages/CreateWorkspacePage Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,15 @@ export const CreateWorkspacePageView: FC<React.PropsWithChildren<CreateWorkspace
157
157
/>
158
158
) }
159
159
160
+ { props . workspaceQuota && (
161
+ < WorkspaceQuota
162
+ quota = { props . workspaceQuota }
163
+ error = {
164
+ props . createWorkspaceErrors [ CreateWorkspaceErrors . GET_WORKSPACE_QUOTA_ERROR ]
165
+ }
166
+ />
167
+ ) }
168
+
160
169
{ props . templateSchema . length > 0 && (
161
170
< Stack >
162
171
{ props . templateSchema . map ( ( schema ) => (
@@ -175,15 +184,6 @@ export const CreateWorkspacePageView: FC<React.PropsWithChildren<CreateWorkspace
175
184
</ Stack >
176
185
) }
177
186
178
- { props . workspaceQuota && (
179
- < WorkspaceQuota
180
- quota = { props . workspaceQuota }
181
- error = {
182
- props . createWorkspaceErrors [ CreateWorkspaceErrors . GET_WORKSPACE_QUOTA_ERROR ]
183
- }
184
- />
185
- ) }
186
-
187
187
< FormFooter
188
188
onCancel = { props . onCancel }
189
189
isLoading = { props . creatingWorkspace }
You can’t perform that action at this time.
0 commit comments