Skip to content

feat: show a warning when an organization has no provisioners #14136

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 5 commits into from
Aug 5, 2024
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
Merge branch 'main' into provisioner-warning
  • Loading branch information
aslilac committed Aug 5, 2024
commit 9a3defe97c1516d3742b5d195f2869e1f5ae9886
2 changes: 1 addition & 1 deletion site/src/pages/CreateTemplatePage/CreateTemplateForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export const CreateTemplateForm: FC<CreateTemplateFormProps> = (props) => {
value={selectedOrg}
onChange={(newValue) => {
setSelectedOrg(newValue);
void form.setFieldValue("organization", newValue?.id || "");
void form.setFieldValue("organization", newValue?.name || "");
}}
size="medium"
/>
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.