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/diff | |
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/diff')
-rw-r--r-- | templates/repo/diff/comment_form.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/diff/image_diff.tmpl | 14 | ||||
-rw-r--r-- | templates/repo/diff/new_review.tmpl | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/templates/repo/diff/comment_form.tmpl b/templates/repo/diff/comment_form.tmpl index deea6baffb..507e4828a7 100644 --- a/templates/repo/diff/comment_form.tmpl +++ b/templates/repo/diff/comment_form.tmpl @@ -2,7 +2,7 @@ <form class="ui form {{if $.hidden}}gt-hidden comment-form{{end}}" action="{{$.root.Issue.Link}}/files/reviews/comments" method="post"> {{$.root.CsrfTokenHtml}} <input type="hidden" name="origin" value="{{if $.root.PageIsPullFiles}}diff{{else}}timeline{{end}}"> - <input type="hidden" name="latest_commit_id" value="{{$.root.AfterCommitID}}"/> + <input type="hidden" name="latest_commit_id" value="{{$.root.AfterCommitID}}"> <input type="hidden" name="side" value="{{if $.Side}}{{$.Side}}{{end}}"> <input type="hidden" name="line" value="{{if $.Line}}{{$.Line}}{{end}}"> <input type="hidden" name="path" value="{{if $.File}}{{$.File}}{{end}}"> diff --git a/templates/repo/diff/image_diff.tmpl b/templates/repo/diff/image_diff.tmpl index 2d4a731758..fba02ad78f 100644 --- a/templates/repo/diff/image_diff.tmpl +++ b/templates/repo/diff/image_diff.tmpl @@ -17,7 +17,7 @@ {{if .blobBase}} <span class="side"> <p class="side-header">{{.root.locale.Tr "repo.diff.file_before"}}</p> - <span class="before-container"><img class="image-before" /></span> + <span class="before-container"><img class="image-before"></span> <p> <span class="bounds-info-before"> {{.root.locale.Tr "repo.diff.file_image_width"}}: <span class="text bounds-info-width"></span> @@ -32,7 +32,7 @@ {{if .blobHead}} <span class="side"> <p class="side-header">{{.root.locale.Tr "repo.diff.file_after"}}</p> - <span class="after-container"><img class="image-after" /></span> + <span class="after-container"><img class="image-after"></span> <p> <span class="bounds-info-after"> {{.root.locale.Tr "repo.diff.file_image_width"}}: <span class="text bounds-info-width"></span> @@ -50,9 +50,9 @@ <div class="ui bottom attached tab image-diff-container" data-tab="diff-swipe-{{.file.Index}}"> <div class="diff-swipe"> <div class="swipe-frame"> - <span class="before-container"><img class="image-before" /></span> + <span class="before-container"><img class="image-before"></span> <span class="swipe-container"> - <span class="after-container"><img class="image-after" /></span> + <span class="after-container"><img class="image-after"></span> </span> <span class="swipe-bar"> <span class="handle top-handle"></span> @@ -65,10 +65,10 @@ <div class="diff-overlay"> <div class="overlay-frame"> <div class="ui centered"> - <input type="range" min="0" max="100" value="50" /> + <input type="range" min="0" max="100" value="50"> </div> - <span class="before-container"><img class="image-before"/></span> - <span class="after-container"><img class="image-after" /></span> + <span class="before-container"><img class="image-before"></span> + <span class="after-container"><img class="image-after"></span> </div> </div> </div> diff --git a/templates/repo/diff/new_review.tmpl b/templates/repo/diff/new_review.tmpl index 6ec1835515..9d2208e289 100644 --- a/templates/repo/diff/new_review.tmpl +++ b/templates/repo/diff/new_review.tmpl @@ -8,7 +8,7 @@ <div class="ui segment"> <form class="ui form" action="{{.Link}}/reviews/submit" method="post"> {{.CsrfTokenHtml}} - <input type="hidden" name="commit_id" value="{{.AfterCommitID}}"/> + <input type="hidden" name="commit_id" value="{{.AfterCommitID}}"> <div class="header gt-df gt-ac gt-pb-3"> <div class="gt-f1">{{$.locale.Tr "repo.diff.review.header"}}</div> <a class="muted close gt-px-3">{{svg "octicon-x" 16}}</a> |