about summary refs log tree commit diff
path: root/app/views/custom_css
diff options
context:
space:
mode:
authorJeong Arm <kjwonmail@gmail.com>2022-07-18 15:41:08 +0900
committerGitHub <noreply@github.com>2022-07-18 08:41:08 +0200
commitad489f865a38e54a0f05598fa3f0638d3808214d (patch)
treed855f4e54bcd37658f2378ab072247393e3b2208 /app/views/custom_css
parentc3f0621a59a74d0e20e6db6170894871c48e8f0f (diff)
Fix custom.css html escaped (#18824)
Diffstat (limited to 'app/views/custom_css')
-rw-r--r--app/views/custom_css/show.css.erb2
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| %>