diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-03-28 00:05:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 18:05:51 +0200 |
commit | 31ab331b233d09568d47ffa25ea5516282d8e71b (patch) | |
tree | b973b2cbb4864676242415d89851468f577a8662 /templates/repo/issue/search.tmpl | |
parent | ec261b63e14f84da3e2d9a6e27c8b831a7750677 (diff) | |
download | gitea-31ab331b233d09568d47ffa25ea5516282d8e71b.tar.gz gitea-31ab331b233d09568d47ffa25ea5516282d8e71b.zip |
Remove incorrect HTML self close tag (#23748)
HTML is not XML.
Diffstat (limited to 'templates/repo/issue/search.tmpl')
-rw-r--r-- | templates/repo/issue/search.tmpl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/repo/issue/search.tmpl b/templates/repo/issue/search.tmpl index c4aa972c90..9a8a77bb87 100644 --- a/templates/repo/issue/search.tmpl +++ b/templates/repo/issue/search.tmpl @@ -1,12 +1,12 @@ <form class="ui form ignore-dirty"> <div class="ui search fluid action input"> - <input type="hidden" name="type" value="{{$.ViewType}}"/> - <input type="hidden" name="state" value="{{$.State}}"/> - <input type="hidden" name="labels" value="{{.SelectLabels}}"/> - <input type="hidden" name="milestone" value="{{$.MilestoneID}}"/> - <input type="hidden" name="project" value="{{$.ProjectID}}"/> - <input type="hidden" name="assignee" value="{{$.AssigneeID}}"/> - <input type="hidden" name="poster" value="{{$.PosterID}}"/> + <input type="hidden" name="type" value="{{$.ViewType}}"> + <input type="hidden" name="state" value="{{$.State}}"> + <input type="hidden" name="labels" value="{{.SelectLabels}}"> + <input type="hidden" name="milestone" value="{{$.MilestoneID}}"> + <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"}}..."> <button class="ui primary button" type="submit">{{.locale.Tr "explore.search"}}</button> </div> |