Skip to content

Commit

Permalink
Merge pull request #1533 from sacr3dc0w/master
Browse files Browse the repository at this point in the history
Fix broken conditional statement in share.html
  • Loading branch information
junedkazi authored Jun 28, 2019
2 parents c6e0958 + 6bb15ed commit f400c19
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 @@ -5,6 +5,7 @@
- Add maxlength to text options [#1531](https://github.com/bigcommerce/cornerstone/pull/1531)
- Add return instructions in return-saved.html [#1525](https://github.com/bigcommerce/cornerstone/pull/1525)
- Remove Google Plus [#1526](https://github.com/bigcommerce/cornerstone/pull/1526)
- Fix broken conditional statement in share.html [#1533](https://github.com/bigcommerce/cornerstone/pull/1533)

## 3.5.1 (2019-06-24)
- Fix conditional logic in share.html [#1522](https://github.com/bigcommerce/cornerstone/pull/1522)
Expand Down
2 changes: 1 addition & 1 deletion templates/components/common/share.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{#each settings.add_this.buttons}}
<li class="socialLinks-item socialLinks-item--{{service}}">
<a class="addthis_button_{{service}} icon icon--{{service}}" {{{annotation}}}>
{{if service '===' 'facebook'}}
{{#if service '===' 'facebook'}}
<svg>
<use xlink:href="#icon-facebook"/>
</svg>
Expand Down

0 comments on commit f400c19

Please sign in to comment.