Skip to content

Commit

Permalink
fix(common) remove dashboard route as long as it not implemented now
Browse files Browse the repository at this point in the history
  • Loading branch information
malashkevich committed Jun 12, 2017
1 parent 01937f5 commit 1dfc6de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions app/config/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ export const MainRoutes = [
},
]
},
{
id: 'DashboardsMenu',
title: 'Dashboards',
icon: FontIcons.dashboard,
screen: Screens.DashboardMenu,
children: []
},
// {
// id: 'DashboardsMenu',
// title: 'Dashboards',
// icon: FontIcons.dashboard,
// screen: Screens.DashboardMenu,
// children: []
// },
{
id: 'WalkthroughMenu',
title: 'Walkthrough',
Expand Down
2 changes: 1 addition & 1 deletion app/config/routesBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const NavigationRoutes = _.find(MainRoutes, {id: 'NavigationMenu'}).child
export const SocialRoutes = _.find(MainRoutes, {id: 'SocialMenu'}).children;
export const ArticleRoutes = _.find(MainRoutes, {id: 'ArticlesMenu'}).children;
export const MessagingRoutes = _.find(MainRoutes, {id: 'MessagingMenu'}).children;
export const DashboardRoutes = _.find(MainRoutes, {id: 'DashboardsMenu'}).children;
//export const DashboardRoutes = _.find(MainRoutes, {id: 'DashboardsMenu'}).children;
export const WalkthroughRoutes = _.find(MainRoutes, {id: 'WalkthroughMenu'}).children;
export const EcommerceRoutes = _.find(MainRoutes, {id: 'EcommerceMenu'}).children;
export const OtherRoutes = _.find(MainRoutes, {id: 'OtherMenu'}).children;

0 comments on commit 1dfc6de

Please sign in to comment.