Skip to content
Snippets Groups Projects
Commit 524cc4f8 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets Committed by Wes Gurney
Browse files

Truncate some text from dashboard events

parent 9aab1b8b
No related branches found
No related tags found
1 merge request!4954Add support to configure webhook_timeout in gitlab.yaml
Loading
Loading
@@ -235,4 +235,11 @@ module ApplicationHelper
"Search"
end
end
def first_line(str)
lines = str.split("\n")
line = lines.first
line += "..." if lines.size > 1
line
end
end
Loading
Loading
@@ -123,6 +123,8 @@ module EventsHelper
end
 
def event_note(text)
sanitize(markdown(truncate(text, length: 150)), tags: %w(a img b pre p))
text = first_line(text)
text = truncate(text, length: 150)
sanitize(markdown(text), tags: %w(a img b pre p))
end
end
Loading
Loading
@@ -5,7 +5,7 @@
%strong= event.ref_name
- else
= link_to project_commits_path(event.project, event.ref_name) do
%strong= event.ref_name
%strong= truncate(event.ref_name, length: 30)
at
%strong= link_to_project event.project
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment