mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-09 03:03:41 +00:00
- Clear our non-breaking-space characters
- These can break SVG rendering in the browser
- Ref: https://github.com/inventree/InvenTree/pull/11655
(cherry picked from commit cead09bcd8)
Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
committed by
GitHub
parent
d1354fc147
commit
913fe854c9
@@ -345,4 +345,8 @@ def sanitize_svg(
|
||||
link_rel=None,
|
||||
)
|
||||
|
||||
# Replace non-breaking spaces with regular spaces to prevent SVG rendering issues
|
||||
for nbsp in [' ', ' ']:
|
||||
cleaned = cleaned.replace(nbsp, ' ')
|
||||
|
||||
return cleaned
|
||||
|
||||
Reference in New Issue
Block a user