From a005a2b0e712e4d40f5890fcfc420072679b586a Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sun, 25 Jun 2017 06:47:38 -0700 Subject: [PATCH] swapped mentions with global in menu, issue #23 --- src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 9b6e578..ff7de7e 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -27,8 +27,8 @@ export class MyApp { // used for an example of ngFor and navigation this.pages = [ { title: 'Timeline', component: StreamPage, params: {stream: 'personal'} }, - { title: 'Global', component: StreamPage, params: {stream: 'global'} }, { title: 'Mentions', component: StreamPage, params: {stream: 'mentions'} }, + { title: 'Global', component: StreamPage, params: {stream: 'global'} }, { title: 'Bookmarks', component: StreamPage, params: {stream: 'bookmarks'} }, { title: 'Logout', component: {}, params: {}}, ];