Skip to content

Commit

Permalink
webapi: allow dots in needle tags
Browse files Browse the repository at this point in the history
And also put dash at the end instead of escaping.
  • Loading branch information
marmarek committed Nov 14, 2024
1 parent 2c4a234 commit c2f0b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/webapi/step/edit.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
<div class="mb-3 row">
<div class="col-sm-10">
<input type="text" class="form-control" id="newtag" placeholder="Add new tags here"
pattern="^[A-Za-z0-9\-_]+$" minLength=4 title="[A-Za-z0-9-_], at least 4 characters">
pattern="^[A-Za-z0-9_.-]+$" minLength=4 title="[A-Za-z0-9_.-], at least 4 characters">
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-secondary form-control" id="tag_add_button" disabled>Add</button>
Expand Down

0 comments on commit c2f0b81

Please sign in to comment.