summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-10-15 16:28:38 -0400
committerUnknwon <joe2010xtmf@163.com>2014-10-15 16:28:38 -0400
commit1aa12c74523680946dd220b6fc8cbe6d594b5a54 (patch)
treeeb7ddfb18e6f402454ba6bdb9bec0da1f537e464 /templates
parentfa241efa6d5e934f599e43714e970fa48c9a0f47 (diff)
downloadgitea-1aa12c74523680946dd220b6fc8cbe6d594b5a54.tar.gz
gitea-1aa12c74523680946dd220b6fc8cbe6d594b5a54.zip
Fix #572
Diffstat (limited to 'templates')
-rw-r--r--templates/repo/commits_table.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl
index 5b9761b165..d48d61a5a7 100644
--- a/templates/repo/commits_table.tmpl
+++ b/templates/repo/commits_table.tmpl
@@ -26,7 +26,7 @@
<tr>
<td class="author"><img class="avatar-20" src="{{AvatarLink .Author.Email}}" alt=""/>&nbsp;&nbsp;&nbsp;{{if .UserName}}<a href="{{AppSubUrl}}/{{.UserName}}">{{.Author.Name}}</a>{{else}}{{.Author.Name}}{{end}}</td>
<td class="sha"><a rel="nofollow" class="label label-green" href="{{AppSubUrl}}/{{$username}}/{{$reponame}}/commit/{{.Id}} ">{{SubStr .Id.String 0 10}} </a></td>
- <td class="message">{{.Summary}} </td>
+ <td class="message"><span class="text-truncate">{{.Summary}}</span></td>
<td class="date">{{TimeSince .Author.When $.Lang}}</td>
</tr>
{{end}}