mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
446 B
16 lines
446 B
# frozen_string_literal: true
|
|
|
|
ActionView::Base.field_error_proc = proc do |html_tag, instance|
|
|
next html_tag if html_tag.starts_with?('<label')
|
|
|
|
errors = Array(instance.error_message).join(', ')
|
|
|
|
field_name =
|
|
instance.object.class.human_attribute_name(instance.instance_variable_get(:@method_name).to_s)
|
|
|
|
result = html_tag
|
|
result += ApplicationController.helpers.tag.div("#{field_name} #{errors}") if errors.present?
|
|
|
|
result
|
|
end
|