Module: WCC::Styles::Helpers

Defined in:
lib/wcc/styles/helpers.rb

Instance Method Summary collapse

Instance Method Details

#show_field_errors(model, field) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/wcc/styles/helpers.rb', line 3

def show_field_errors(model, field)
  if model.errors[field].present?
    (:div, class: "invalid-error") do
      model.errors[field].to_sentence
    end
  end
end