mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:11:42 +00:00
13 lines
438 B
Ruby
13 lines
438 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Adaptar la renderización de campos con error de Rails para que sea
|
|
# compatible con Bootstrap4. La forma actual rompe los inputs
|
|
# personalizados.
|
|
ActionView::Base.field_error_proc = proc do |html_tag, _|
|
|
return unless html_tag
|
|
|
|
html = Nokogiri::HTML::DocumentFragment.parse html_tag
|
|
html&.children&.first&.attributes&.dig('class')&.value += ' is-invalid'
|
|
|
|
html&.to_s&.html_safe || html_tag
|
|
end
|