about summary refs log tree commit diff
path: root/app/views/layouts/embedded.html.haml
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-04-05 13:05:49 +0200
committerGitHub <noreply@github.com>2021-04-05 13:05:49 +0200
commit117f6638d0c402162c60915c7b8946489f1e89df (patch)
treeb2a257cbb615389d1af1412187cedd67324e5a29 /app/views/layouts/embedded.html.haml
parent3511797e3f01a062795b79e0db9402c3008744a4 (diff)
Fix SVG files not being correctly included in templates (#16001)
In Rails 6.1, raw file inclusion in templates have to be explicitly marked as
HTML-safe, otherwise it's rendered as text.
Diffstat (limited to 'app/views/layouts/embedded.html.haml')
-rw-r--r--app/views/layouts/embedded.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/embedded.html.haml b/app/views/layouts/embedded.html.haml
index e4311d342..719c21a9a 100644
--- a/app/views/layouts/embedded.html.haml
+++ b/app/views/layouts/embedded.html.haml
@@ -21,4 +21,4 @@
     = yield
 
     .logo-resources
-      = render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg')
+      = raw render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg')