mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
17 lines
272 B
Ruby
17 lines
272 B
Ruby
module SimpleForm
|
|
module Components
|
|
class Hint < Base
|
|
def valid?
|
|
!hidden_input? && !hint.blank?
|
|
end
|
|
|
|
def hint
|
|
@hint ||= options[:hint] || translate
|
|
end
|
|
|
|
def content
|
|
component_tag hint
|
|
end
|
|
end
|
|
end
|
|
end
|