summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-01 09:36:59 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-01 09:36:59 +0200
commit844f8fd2131e10832efd05175930944c0ed9df63 (patch)
tree4901a9862c29fdffef380a23d6b6fc7531aa758f
parent6055c615dbf37bece7e34af843b000c23a72eaf8 (diff)
downloadgitlab-ce-844f8fd2131e10832efd05175930944c0ed9df63.tar.gz
Show only first line of commit message on dashboard
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--app/helpers/events_helper.rb6
-rw-r--r--app/views/events/_commit.html.haml2
2 files changed, 7 insertions, 1 deletions
diff --git a/app/helpers/events_helper.rb b/app/helpers/events_helper.rb
index cd8761a6113..4aeb65752f0 100644
--- a/app/helpers/events_helper.rb
+++ b/app/helpers/events_helper.rb
@@ -127,4 +127,10 @@ module EventsHelper
text = truncate(text, length: 150)
sanitize(markdown(text), tags: %w(a img b pre p))
end
+
+ def event_commit_title(message)
+ escape_once(truncate(message.split("\n").first, length: 70))
+ rescue
+ "--broken encoding"
+ end
end
diff --git a/app/views/events/_commit.html.haml b/app/views/events/_commit.html.haml
index 4d4b24009f4..135320da57e 100644
--- a/app/views/events/_commit.html.haml
+++ b/app/views/events/_commit.html.haml
@@ -2,4 +2,4 @@
.commit-row-title
= link_to commit[:id][0..8], project_commit_path(project, commit[:id]), class: "commit_short_id", alt: ''
&nbsp;
- = gfm escape_once(truncate(commit[:message], length: 70)) rescue "--broken encoding"
+ = gfm event_commit_title(commit[:message])