upgrade: Remove required attribute from org-type select element.

We do not need "required" attribute in the org-type select element
in sponsorship form, since we select a value by default and there
is no way to not have any value for the select element.

Also, the "required" attribute was added twice somehow.
This commit is contained in:
Sahil Batra 2022-12-27 16:23:30 +05:30 committed by Tim Abbott
parent f552465c2d
commit 9c39ccbeab
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@
<label>
<h4>Organization type</h4>
</label>
<select name="organization-type" required style="width: 100%;" required>
<select name="organization-type" style="width: 100%;">
{% for org_type in sorted_org_types %}
{% if not org_type[1].hidden %}
<option data-string-value="{{ org_type[0] }}"