diff --git a/src/routes.js b/src/routes.js index c6e96cef..253bb0ce 100644 --- a/src/routes.js +++ b/src/routes.js @@ -25,37 +25,37 @@ const routes = [ path: '', component: DashboardView, name: 'Dashboard', - description: 'Overview of environment' + meta: {description: 'Overview of environment'} }, { path: '/tables', component: TablesView, name: 'Tables', - description: 'Simple and advance table in CoPilot' + meta: {description: 'Simple and advance table in CoPilot'} }, { path: '/tasks', component: TasksView, name: 'Tasks', - description: 'Tasks page in the form of a timeline' + meta: {description: 'Tasks page in the form of a timeline'} }, { path: '/setting', component: SettingView, name: 'Settings', - description: 'User settings page' + meta: {description: 'User settings page'} }, { path: '/access', component: AccessView, name: 'Access', - description: 'Example of using maps' + meta: {description: 'Example of using maps'} }, { path: '/server', component: ServerView, name: 'Servers', - description: 'List of our servers' + meta: {description: 'List of our servers'} }, { path: '/repos', component: ReposView, name: 'Repository', - description: 'List of popular javascript repos' + meta: {description: 'List of popular javascript repos'} } ] }, {