Skip to content

Commit

Permalink
fix: allow dash in repository name field (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
avrong authored Jun 28, 2024
1 parent d54c3f8 commit 08b4e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/html/repository/create
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function formSubmit() {

<form action="#" method="POST" id="new-repo-form" onsubmit="return formSubmit();">
<label>Create new repository:</label>
<input id="new-repo-name" name="name" type="text" size="25" required="true" pattern="[a-z0-9]{3,16}"/>
<input id="new-repo-name" name="name" type="text" size="25" required="true" pattern="[a-z0-9-]{3,16}"/>
<label>Type:</label>
<select id="new-repo-type" name="type" onchange="updateFormFields()">
<option value="maven">Maven</option>
Expand Down

0 comments on commit 08b4e4a

Please sign in to comment.