Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubicweb
Commits
adf764454722
Commit
3267bd12
authored
Aug 19, 2021
by
Noé Gaumont
🐙
Browse files
fix: don't escape label in facet
--HG-- branch : 3.32
parent
747b61aa3253
Changes
1
Hide whitespace changes
Inline
Side-by-side
cubicweb/web/facet.py
View file @
adf76445
...
...
@@ -1680,7 +1680,7 @@ class FacetVocabularyWidget(htmlwidgets.HTMLWidget):
# If it is overflowed one must add padding to compensate for the vertical
# scrollbar; given current css values, 4 blanks work perfectly ...
padding
=
" "
*
self
.
scrollbar_padding_factor
if
overflow
else
""
w
(
"<span>%s</span>"
,
xml_escape
(
label
)
)
w
(
"<span>%s</span>"
,
label
)
w
(
padding
)
w
(
"</div>"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment