diff options
author | zeripath <art27@cantab.net> | 2021-08-06 02:13:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 21:13:16 -0400 |
commit | 067d82b5a6eb223ff6f6bfa1755e0a2c5bab1d3f (patch) | |
tree | 4833066c65005d7cc1788a6dcd495f7d04a8d411 /templates | |
parent | ab9bb54144f136bbbba2ce2e94fd88c0be0ee1cf (diff) | |
download | gitea-067d82b5a6eb223ff6f6bfa1755e0a2c5bab1d3f.tar.gz gitea-067d82b5a6eb223ff6f6bfa1755e0a2c5bab1d3f.zip |
Prevent 500 on draft releases without tag (#16634)
It is possible to create draft releases prior to creating a tag. This will cause a
500 on the releases page due to compare page failing.
This PR only shows the compare button if there is a SHA1 present.
Fix #16610
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/release/list.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index f9bc0ebb02..5f06bf45d4 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -82,7 +82,9 @@ <a class="mono" href="{{$.RepoLink}}/src/commit/{{.Sha1}}" rel="nofollow">{{svg "octicon-git-commit" 16 "mr-2"}}{{ShortSha .Sha1}}</a> </span> {{end}} - {{template "repo/branch_dropdown" dict "root" $ "release" .}} + {{if .Sha1 }} + {{template "repo/branch_dropdown" dict "root" $ "release" .}} + {{end}} {{end}} </div> <div class="ui twelve wide column detail"> |