Include subcategories in hamburger menu top categories

This commit is contained in:
Vinoth Kannan 2018-07-27 13:05:18 +05:30
parent dac29b5ebc
commit c0f7d95bb8
1 changed files with 1 additions and 2 deletions

View File

@ -178,8 +178,7 @@ export default createWidget("hamburger-menu", {
listCategories() {
const maxCategoriesToDisplay = 6;
const categoriesList = this.site
.get("categoriesByCount")
.reject(c => c.parent_category_id);
.get("categoriesByCount");
let categories = [];
let showMore = categoriesList.length > maxCategoriesToDisplay;