Skip to content

Commit

Permalink
Fix to #2761
Browse files Browse the repository at this point in the history
  • Loading branch information
pkarw committed Apr 23, 2019
1 parent c946c73 commit c0c6105
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 @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Respect store code on order/PROCESS_QUEUE for shop store - @zulcom (#2727)
- Unexpected `window.localStorage` use in user module actions - @zulcom (#2735)
- Fix handling state of same address checkbox in the checkout - @lukeromanowicz (#2730)
- Fix for `everythingNew` collection on home page - @vishal-7037 (#2761)

### Changed / Improved
- Improved ProductGalleryCarousel component to handle nonnumeric options id’s - @danieldomurad (#2586)
Expand Down
2 changes: 1 addition & 1 deletion src/themes/default/pages/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<promoted-offers/>

<section class="new-collection container px15" v-if="everythingNewCollection.length">
<section class="new-collection container px15" v-if="everythingNewCollection && everythingNewCollection.length">
<div>
<header class="col-md-12">
<h2 class="align-center cl-accent">{{ $t('Everything new') }}</h2>
Expand Down

0 comments on commit c0c6105

Please sign in to comment.