summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-11-22 16:11:46 +0100
committerJulius Härtl <jus@bitgrid.net>2018-11-22 18:57:18 +0100
commit69201a9ce28c56a8accf69cef8bcadce9b563534 (patch)
treea8492f287c3a49bd14d87cf1f6d15a066dbbb4d3 /src/App.vue
parent9375d246b9b72942b22ae89fc0f09234e6a1e287 (diff)
Load streams with pagination
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/App.vue b/src/App.vue
index e28879c0..ef25ee57 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -120,23 +120,23 @@ export default {
classes: []
},
{
- id: 'social-timeline',
+ id: 'social-local',
classes: [],
icon: 'icon-category-monitoring',
text: t('social', 'Local timeline'),
router: {
name: 'timeline',
- params: { type: 'local' }
+ params: { type: 'timeline' }
}
},
{
- id: 'social-timeline',
+ id: 'social-global',
classes: [],
icon: 'icon-link',
text: t('social', 'Global timeline'),
router: {
name: 'timeline',
- params: { type: 'global' }
+ params: { type: 'federated' }
}
}
]