diff options
author | Tony Tsang <tony@uniongate.com.hk> | 2014-12-05 10:33:22 +0800 |
---|---|---|
committer | Tony Tsang <tony@uniongate.com.hk> | 2014-12-05 10:53:37 +0800 |
commit | d4a1d9f82a06fccb0b9d892b09b3271f85717f94 (patch) | |
tree | 9bc95f866b20038f167b6a9ba05e00f47399060b /templates | |
parent | f7f4ea1dcf097d358cbebfc2afa25b6be1cf2620 (diff) | |
download | gitea-d4a1d9f82a06fccb0b9d892b09b3271f85717f94.tar.gz gitea-d4a1d9f82a06fccb0b9d892b09b3271f85717f94.zip |
Display multi-line commit message on commit diff page.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/diff.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/diff.tmpl b/templates/repo/diff.tmpl index 8e6b1b0796..61164c0de0 100644 --- a/templates/repo/diff.tmpl +++ b/templates/repo/diff.tmpl @@ -17,7 +17,7 @@ <div class="panel panel-info panel-radius diff-head-box"> <div class="panel-header"> <a class="pull-right btn btn-blue btn-header btn-medium btn-radius" rel="nofollow" href="{{.SourcePath}}">{{.i18n.Tr "repo.diff.browse_source"}}</a> - <h4>{{.Commit.Message}}</h4> + <h4 class="commit-message">{{.Commit.Message}}</h4> </div> <div class="panel-body"> <span class="pull-right"> |