diff options
Diffstat (limited to 'lib/active_text')
-rw-r--r-- | lib/active_text/content.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/active_text/content.rb b/lib/active_text/content.rb index 190f7d3c7b..58589cc110 100644 --- a/lib/active_text/content.rb +++ b/lib/active_text/content.rb @@ -4,7 +4,7 @@ module ActiveText attr_reader :fragment - delegate :blank?, :empty?, :present?, to: :to_s + delegate :blank?, :empty?, :html_safe, :present?, to: :to_s def initialize(content = nil) @fragment = ActiveText::Attachment.fragment_by_canonicalizing_attachments(content) |