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

16 lines
282 B
Ruby

module SimpleForm
module Components
module LabelInput
extend ActiveSupport::Concern
included do
include SimpleForm::Components::Labels
end
def label_input
options[:label] == false ? input : (label + input)
end
end
end
end