diff --git a/front-ui/app/components/shared/sectionsListComponent.js b/front-ui/app/components/shared/sectionsListComponent.js index 419ffb8..e917141 100644 --- a/front-ui/app/components/shared/sectionsListComponent.js +++ b/front-ui/app/components/shared/sectionsListComponent.js @@ -39,12 +39,12 @@ var SectionsListComponent = React.createClass({ onSectionClick: function(section) { SectionActions.unsetSectionHover(); NavigationActions.goToSection(section); - return false; + event.preventDefault(); }, onCategoryClick: function(category, section) { SectionActions.unsetSectionHover(); NavigationActions.goToCategory(new Category(category), section); - return false; + event.preventDefault(); }, onSubcategoryClick: function(subcategory) { // implement in navigation actions @@ -77,19 +77,7 @@ var SectionsListComponent = React.createClass({ {section.get('categories').map(function(category) { return (