Skip to content

Commit

Permalink
Fix graduate student option
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall authored Sep 4, 2024
1 parent 9b88190 commit 853746d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/appsscript/contributor-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
<option value="Faculty" ${status === 'Faculty' ? 'selected' : ''}>Faculty</option>
<option value="Staff" ${status === 'Staff' ? 'selected' : ''}>Staff</option>
<option value="Undergraduate Student" ${status === 'Undergraduate Student' ? 'selected' : ''}>Undergraduate Student</option>
<option value="Undergraduate Student" ${status === 'Undergraduate Student' ? 'selected' : ''}>Graduate Student</option>
<option value="Graduate Student" ${status === 'Graduate Student' ? 'selected' : ''}>Graduate Student</option>
`;

const institutionField = document.createElement('input');
Expand Down

0 comments on commit 853746d

Please sign in to comment.