fix(label): don't html_safe user label from bdd
This commit is contained in:
parent
e723c9e365
commit
fd38288cf8
1 changed files with 4 additions and 2 deletions
|
@ -120,7 +120,9 @@ module DossierHelper
|
|||
|
||||
def tags_label(tags)
|
||||
if tags.count > 1
|
||||
tag.ul(tags.map { tag.li(tag_label(_1[1], _1[2])) }.join.html_safe, class: 'fr-tags-group')
|
||||
tag.ul(class: 'fr-tags-group') do
|
||||
safe_join(tags.map { |t| tag.li(tag_label(t[1], t[2])) })
|
||||
end
|
||||
else
|
||||
tag = tags.first
|
||||
tag_label(tag[1], tag[2])
|
||||
|
|
Loading…
Reference in a new issue