remove space

This commit is contained in:
Alexander Meindl 2018-08-30 17:39:57 +02:00
parent 0af4b44abc
commit c148c86294

View File

@ -57,10 +57,10 @@ module Additionals
if options[:link].present?
content_tag(:a, href: options[:link]) do
content_tag(:i, options[:text], content_options)
content_tag(:i, ' ' + options[:text], content_options)
end
else
content_tag(:i, options[:text], content_options)
content_tag(:i, ' ' + options[:text], content_options)
end
end
end