Fix hidespan helper using not existing Bootstrap class

This commit is contained in:
Andreas Nedbal 2020-05-05 05:04:43 +02:00
parent 22ae1f6655
commit 0bc4a5b968

View file

@ -48,7 +48,7 @@ module ApplicationHelper
end
def hidespan(body, hide)
content_tag(:span, body, class: "hidden-#{hide}")
content_tag(:span, body, class: hide)
end
##