Skip to content

Commit

Permalink
Merge pull request #1326 from bc-zoharmuzafi/invoice_img
Browse files Browse the repository at this point in the history
change src for invoice logo image
  • Loading branch information
bc-zoharmuzafi authored Aug 14, 2018
2 parents 3222c48 + e9b8384 commit 62ade4c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

## 2.3.1 (2018-08-03)
- Fix for review tabs not appearing. [#1322](https://github.com/bigcommerce/cornerstone/pull/1322)
- Fix invoice store logo. [#1326](https://github.com/bigcommerce/cornerstone/pull/1326)

## 2.3.0 (2018-08-02)
- Open correct product page tabs when URL contains a fragment identifier referring to that content [#1304](https://github.com/bigcommerce/cornerstone/pull/1304)
Expand Down
8 changes: 7 additions & 1 deletion templates/pages/account/orders/invoice.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@
<div class="Invoice">
<h1>
{{#if settings.store_logo.image}}
<img class="header-logo-image lazyload" data-sizes="auto" src="{{cdn 'img/loading.svg'}}" data-src="{{getImage settings.store_logo.image 'logo_size'}}" alt="{{settings.store_logo.title}}" title="{{settings.store_logo.title}}">
{{#if theme_settings.logo_size '===' 'original'}}
<img class="header-logo-image-unknown-size" src="{{getImage settings.store_logo.image 'logo_size'}}" alt="{{settings.store_logo.title}}" title="{{settings.store_logo.title}}">
{{else}}
<div class="header-logo-image-container">
<img class="header-logo-image" data-sizes="auto" src="{{getImage settings.store_logo.image 'logo_size'}}" alt="{{settings.store_logo.title}}" title="{{settings.store_logo.title}}">
</div>
{{/if}}
{{else}}
<span class="header-logo-text">{{settings.store_logo.title}}</span>
{{/if}}
Expand Down

0 comments on commit 62ade4c

Please sign in to comment.