Skip to content

Commit

Permalink
allow blank in user admin edit
Browse files Browse the repository at this point in the history
  • Loading branch information
acoffman committed Dec 5, 2024
1 parent 2f57e13 commit f3700e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/app/admin/users_admin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

text_area :bio

collection_select :country_id, Country.order(:name), :id, :name
collection_select :country_id, Country.order(:name), :id, :name, {prompt: 'Choose a Country' }, include_blank: true

select :organization_ids, Organization.order(:name), { label: "Organization" }, multiple: true
end
Expand Down

0 comments on commit f3700e5

Please sign in to comment.