heartcombo--simple_form/lib/simple_form/components/hints.rb

18 lines
255 B
Ruby

module SimpleForm
module Components
module Hints
def hint
(options.delete(:hint) || translate(:hints)).presence
end
private
alias :enabled_hint :hint
def disabled_hint
nil
end
end
end
end