diff options
author | Jeong Arm <kjwonmail@gmail.com> | 2022-07-18 15:41:08 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 08:41:08 +0200 |
commit | ad489f865a38e54a0f05598fa3f0638d3808214d (patch) | |
tree | d855f4e54bcd37658f2378ab072247393e3b2208 /app | |
parent | c3f0621a59a74d0e20e6db6170894871c48e8f0f (diff) |
Fix custom.css html escaped (#18824)
Diffstat (limited to 'app')
-rw-r--r-- | app/views/custom_css/show.css.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/custom_css/show.css.erb b/app/views/custom_css/show.css.erb index 521834832..9cd38fb37 100644 --- a/app/views/custom_css/show.css.erb +++ b/app/views/custom_css/show.css.erb @@ -1,5 +1,5 @@ <%- if Setting.custom_css.present? %> -<%= Setting.custom_css %> +<%= raw Setting.custom_css %> <%- end %> <%- UserRole.where(highlighted: true).select { |role| role.color.present? }.each do |role| %> |