Skip to content

Commit

Permalink
Merge pull request #1238 from Ubersmake/STRF-4786
Browse files Browse the repository at this point in the history
fix(storefront): STRF-4786 Do not escape blog summary HTML.
  • Loading branch information
Ubersmake committed May 17, 2018
2 parents 4bbd46c + bee2d53 commit 9534aec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Draft
- Fix for sort disappearing on range update with product filtering [#1232](https://github.com/bigcommerce/cornerstone/pull/1232)
- No longer escaping HTML content in blog summaries. [#1238](https://github.com/bigcommerce/cornerstone/pull/1238)

## 1.18.0 (2018-05-09)
- Add the +/- icons for the category filtering [#1211](https://github.com/bigcommerce/cornerstone/pull/1211)
Expand Down
2 changes: 1 addition & 1 deletion templates/components/blog/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h2 class="blog-title">
{{#if post.body}}
{{{post.body}}}
{{else}}
{{post.summary}}
{{{post.summary}}}
{{#if post.show_read_more}}
&hellip; <a href="{{url}}">read more</a>
{{/if}}
Expand Down

0 comments on commit 9534aec

Please sign in to comment.