diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2017-11-12 17:35:55 -0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-11-13 09:35:55 +0800 |
commit | 5481be0ac5e137a1127ca37975a6d319bf0ad940 (patch) | |
tree | 44e39f02682181b7cf4d593f3b5d18e2b4d857a8 /templates/repo/commits_table.tmpl | |
parent | 47f40ccd5ee1b54019cec6b5d3bce6b8075a1384 (diff) | |
download | gitea-5481be0ac5e137a1127ca37975a6d319bf0ad940.tar.gz gitea-5481be0ac5e137a1127ca37975a6d319bf0ad940.zip |
Fix issue link rendering in commit messages (#2897)
* Fix issue link rendering in commit messages
* Update page.tmpl
* No links for parens
* remove comment
Diffstat (limited to 'templates/repo/commits_table.tmpl')
-rw-r--r-- | templates/repo/commits_table.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl index 2ca861c623..5550ad7493 100644 --- a/templates/repo/commits_table.tmpl +++ b/templates/repo/commits_table.tmpl @@ -60,7 +60,7 @@ </a> </td> <td class="message collapsing"> - <span class="has-emoji{{if gt .ParentCount 1}} grey text{{end}}">{{RenderCommitMessage false .Summary $.RepoLink $.Repository.ComposeMetas}}</span> + <span class="has-emoji{{if gt .ParentCount 1}} grey text{{end}}">{{RenderCommitMessage .Summary $.RepoLink $.Repository.ComposeMetas}}</span> {{template "repo/commit_status" .Status}} </td> <td class="grey text right aligned">{{TimeSince .Author.When $.Lang}}</td> |