fix(pdf): strip html in type_de_champ descriptions

This commit is contained in:
Colin Darie 2022-11-24 18:18:24 +01:00
parent 907f3da3cf
commit 0e49f3321a
2 changed files with 2 additions and 2 deletions

View file

@ -115,7 +115,7 @@ def add_explanation(pdf, explanation)
end
def add_optionnal_description(pdf, champ)
add_explanation(pdf, champ.description.strip + "\n\n") if champ.description.present?
add_explanation(pdf, strip_tags(champ.description).strip + "\n\n") if champ.description.present?
end
def render_single_champ(pdf, champ)

View file

@ -142,7 +142,7 @@ def add_single_champ(pdf, champ)
when 'Champs::HeaderSectionChamp'
add_section_title(pdf, tdc.libelle)
when 'Champs::ExplicationChamp'
format_in_2_lines(pdf, tdc.libelle, tdc.description)
format_in_2_lines(pdf, tdc.libelle, strip_tags(tdc.description))
when 'Champs::CarteChamp'
format_in_2_lines(pdf, tdc.libelle, champ.to_feature_collection.to_json)
when 'Champs::SiretChamp'