mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-12 21:00:58 +00:00
Fixed link formatting error
This commit is contained in:
parent
b1e451030c
commit
4ebb95ca3a
1 changed files with 2 additions and 2 deletions
|
@ -35,9 +35,9 @@ module ApplicationHelper
|
|||
end
|
||||
str = model.to_s
|
||||
if length and str.length > length
|
||||
link_to raw(str.to_s[0, length] + "..."), model, class: model.class.to_s.downcase
|
||||
link_to str.to_s[0, length] + "...", model, class: model.class.to_s.downcase
|
||||
else
|
||||
link_to raw(str), model, class: model.class.to_s.downcase
|
||||
link_to str, model, class: model.class.to_s.downcase
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue