Skip to content

Commit

Permalink
Form - Suppression de la div field_with_errors (#4826)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineGirard authored Nov 20, 2024
1 parent c1e53f5 commit a99f182
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/initializers/field_with_errors.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Par défaut, Rails ajoute une div avec une classe CSS "field_with_errors" aux champs de formulaire qui contiennent
# des erreurs. Nous n’utilisons pas cette classe CSS dans notre design, et l’ajout de cette div rentre en conflit avec
# certains éléments du DSFR. Nous désactivons ce comportement avec le code suivant.
ActionView::Base.field_error_proc = proc do |html_tag, _|
html_tag.html_safe # rubocop:disable Rails/OutputSafety
end

0 comments on commit a99f182

Please sign in to comment.