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
1 changed files with 1 additions and 1 deletions

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
##