From 8355122c980300fd34869c3e0f8a573d3b370850 Mon Sep 17 00:00:00 2001 From: sacr3dc0w Date: Wed, 4 Jul 2018 13:29:34 -0700 Subject: [PATCH] Fix blog_post import statement in app.js --- CHANGELOG.md | 1 + assets/js/app.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50f15e1a14..842ab52bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Display product reviews in tabbed content region of product page. [#1302](https://github.com/bigcommerce/cornerstone/pull/1302) - Show bulk discounts only if enabled through store settings. [#1310](https://github.com/bigcommerce/cornerstone/pull/1310) - Style active section in search results. [#1316](https://github.com/bigcommerce/cornerstone/pull/1316) +- Fix blog_post import statement in app.js [#1301](https://github.com/bigcommerce/cornerstone/pull/1301) ## 2.2.1 (2018-07-10) - Fix wishlist dropdown background color bleeding out of container [#1283](https://github.com/bigcommerce/cornerstone/pull/1283) diff --git a/assets/js/app.js b/assets/js/app.js index 902b8d5bbd..fa39211325 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -26,7 +26,7 @@ const pageClasses = { getnewpassword: getLogin, forgotpassword: getLogin, blog: () => import('./theme/blog'), - blog_post: () => import('./theme/blog'), + blog_post: () => import('./theme/blog-post'), brand: () => import('./theme/brand'), brands: () => import('./theme/brands'), cart: () => import('./theme/cart'),