mirror of https://github.com/zulip/zulip.git
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:
parent
f552465c2d
commit
9c39ccbeab
|
@ -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] }}"
|
||||
|
|
Loading…
Reference in New Issue