Fixed link formatting error

This commit is contained in:
Absurdon 2017-03-15 13:53:18 +01:00
parent cafd421d0a
commit 946342bffb

View file

@ -35,9 +35,9 @@ module ApplicationHelper
end end
str = model.to_s str = model.to_s
if length and str.length > length 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 else
link_to raw(str), model, class: model.class.to_s.downcase link_to str, model, class: model.class.to_s.downcase
end end
end end