aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/search.tmpl
diff options
context:
space:
mode:
authorJakobDev <jakobdev@gmx.de>2023-05-26 11:42:54 +0200
committerGitHub <noreply@github.com>2023-05-26 09:42:54 +0000
commit85fa954a3810b233cb299f455546c4b2314400b3 (patch)
tree9cf4b3955c59b6c38aba1b1df07d14843aaef375 /templates/repo/issue/search.tmpl
parent18f26cfbf7f9b36b838c0e8762bfba98c89b9797 (diff)
downloadgitea-85fa954a3810b233cb299f455546c4b2314400b3.tar.gz
gitea-85fa954a3810b233cb299f455546c4b2314400b3.zip
Improve some Forms (#24878)
Don't really know a better name for this. I've gone through some Forms and added missing HTML attributes (mostly `maxlength`). I tried to fill the Forms with dummy Data and see if Gitea throws a Error (e.g. maximum length). If yes, I added the missing HTML attribute. While working on this, I discovered that the Form to add OAuth2 Apps just silently fails when filled with invalid data, so I fixed that too.
Diffstat (limited to 'templates/repo/issue/search.tmpl')
-rw-r--r--templates/repo/issue/search.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/search.tmpl b/templates/repo/issue/search.tmpl
index f24c2dbb7e..97b22d3699 100644
--- a/templates/repo/issue/search.tmpl
+++ b/templates/repo/issue/search.tmpl
@@ -7,7 +7,7 @@
<input type="hidden" name="project" value="{{$.ProjectID}}">
<input type="hidden" name="assignee" value="{{$.AssigneeID}}">
<input type="hidden" name="poster" value="{{$.PosterID}}">
- <input name="q" value="{{.Keyword}}" placeholder="{{.locale.Tr "explore.search"}}...">
+ <input name="q" value="{{.Keyword}}" placeholder="{{.locale.Tr "explore.search"}}..." maxlength="255">
{{if .PageIsIssueList}}
<button id="issue-list-quick-goto" class="ui small icon button gt-hidden" data-tooltip-content="{{.locale.Tr "explore.go_to"}}" data-repo-link="{{.RepoLink}}">{{svg "octicon-hash"}}</button>
{{end}}