Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow dash in repository name field #127

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading