Patch #37350 ยป textilizable_without_attachment.patch
app/helpers/queries_helper.rb | ||
---|---|---|
255 | 255 |
when :parent |
256 | 256 |
value ? (value.visible? ? link_to_issue(value, :subject => false) : "##{value.id}") : '' |
257 | 257 |
when :description |
258 |
item.description? ? content_tag('div', textilizable(item, :description), :class => "wiki") : '' |
|
258 |
item.description? ? content_tag('div', textilizable(item, :description, inline_attachments: false), :class => "wiki") : ''
|
|
259 | 259 |
when :last_notes |
260 |
item.last_notes.present? ? content_tag('div', textilizable(item, :last_notes), :class => "wiki") : '' |
|
260 |
item.last_notes.present? ? content_tag('div', textilizable(item, :last_notes, inline_attachments: false), :class => "wiki") : ''
|
|
261 | 261 |
when :done_ratio |
262 | 262 |
progress_bar(value) |
263 | 263 |
when :relations |