summaryrefslogtreecommitdiffstats
path: root/app/helpers/issues_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/issues_helper.rb')
-rw-r--r--app/helpers/issues_helper.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb
index da2b8ec13..654f18e01 100644
--- a/app/helpers/issues_helper.rb
+++ b/app/helpers/issues_helper.rb
@@ -234,8 +234,12 @@ module IssuesHelper
issue_fields_rows do |rows|
values.each_with_index do |value, i|
css = "cf_#{value.custom_field.id}"
+ attr_value = show_value(value)
+ if value.custom_field.text_formatting == 'full'
+ attr_value = content_tag('div', attr_value, class: 'wiki')
+ end
m = (i < half ? :left : :right)
- rows.send m, custom_field_name_tag(value.custom_field), show_value(value), :class => css
+ rows.send m, custom_field_name_tag(value.custom_field), attr_value, :class => css
end
end
end