From e9b83849436a7b52204f55f49c371531ff4b6b72 Mon Sep 17 00:00:00 2001 From: bc-zoharmuzafi Date: Fri, 10 Aug 2018 17:07:50 -0700 Subject: [PATCH] load logo img in invoice without lazyload --- CHANGELOG.md | 1 + templates/pages/account/orders/invoice.html | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3dfe02969..0ce2703c00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,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) diff --git a/templates/pages/account/orders/invoice.html b/templates/pages/account/orders/invoice.html index 73990d0a1b..9a4808788c 100644 --- a/templates/pages/account/orders/invoice.html +++ b/templates/pages/account/orders/invoice.html @@ -6,7 +6,13 @@

{{#if settings.store_logo.image}} - {{settings.store_logo.title}} + {{#if theme_settings.logo_size '===' 'original'}} + {{settings.store_logo.title}} + {{else}} +
+ {{settings.store_logo.title}} +
+ {{/if}} {{else}} {{settings.store_logo.title}} {{/if}}