diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-03-04 18:57:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 10:57:30 +0000 |
commit | 7ec4c65ea5d5a3765d24ee68ae421f2f911b6b5d (patch) | |
tree | 2129be84467f7afbb477233c78b42faaa330ae9e /templates/admin/packages | |
parent | e2277d07ca5112a797f8c86f825060027ff1c2da (diff) | |
download | gitea-7ec4c65ea5d5a3765d24ee68ae421f2f911b6b5d.tar.gz gitea-7ec4c65ea5d5a3765d24ee68ae421f2f911b6b5d.zip |
Fix incorrect package link method calls in templates (#29580)
Fix #29562
Follow #29531
Diffstat (limited to 'templates/admin/packages')
-rw-r--r-- | templates/admin/packages/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/admin/packages/list.tmpl b/templates/admin/packages/list.tmpl index cf860dab2a..1f86803d55 100644 --- a/templates/admin/packages/list.tmpl +++ b/templates/admin/packages/list.tmpl @@ -63,7 +63,7 @@ </td> <td>{{.Package.Type.Name}}</td> <td class="gt-ellipsis gt-max-width-12rem">{{.Package.Name}}</td> - <td class="gt-ellipsis gt-max-width-12rem"><a href="{{.FullWebLink}}">{{.Version.Version}}</a></td> + <td class="gt-ellipsis gt-max-width-12rem"><a href="{{.VersionWebLink}}">{{.Version.Version}}</a></td> <td><a href="{{.Creator.HomeLink}}">{{.Creator.Name}}</a></td> <td> {{if .Repository}} |