Skip to content

Commit

Permalink
remove required on new project form
Browse files Browse the repository at this point in the history
  • Loading branch information
octavioamu committed Oct 16, 2020
1 parent 329fb81 commit 835b3ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/dashboard/templates/dashboard/hackathon/project_new.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h2 class="h5 text-center font-weight-bold mb-4">Let's Get Started!</h2>
<div class="from-group mb-3 mt-4">
<label class="font-weight-semibold" for="project_profiles">Team Members (Optional) <small>Add Gitcoin Usernames</small></label>
<div class="form__select2 g-multiselect">
<select id="project_profiles" class="team-users" name="profiles[]" multiple="multiple" aria-describedby="profilesHelp" required>
<select id="project_profiles" class="team-users" name="profiles[]" multiple="multiple" aria-describedby="profilesHelp">
{% for profile in project_selected.profiles.all %}
<option selected="selected" value="{{ profile.id }}">{{ profile }}</option>
{% endfor %}
Expand Down Expand Up @@ -142,7 +142,7 @@ <h2 class="h5 text-center font-weight-bold mb-4">Let's Get Started!</h2>
<div class="from-group mb-3 mt-4">
<label class="font-weight-semibold" for="project_profiles">Team members</label>
<div class="form__select2 g-multiselect">
<select id="project_profiles" class="team-users" name="profiles[]" multiple="multiple" aria-describedby="profilesHelp" required>
<select id="project_profiles" class="team-users" name="profiles[]" multiple="multiple" aria-describedby="profilesHelp">
</select>
</div>
<small id="profilesHelp" class="form-text text-muted">
Expand Down

0 comments on commit 835b3ea

Please sign in to comment.