From 14e1d3acdb27033269bd66e02d8ea4756afdf28c Mon Sep 17 00:00:00 2001 From: root Date: Thu, 4 Nov 2021 03:00:52 +0530 Subject: [PATCH] Adjust app bar links --- src/App.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/App.vue b/src/App.vue index e5f9b31..e7fc50f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -119,16 +119,16 @@ export default { computed: { links () { const links = [ - { - id: 'prefs', - name: 'titles.preferences', - to: '/preferences' - }, { id: 'trending', name: 'titles.trending', to: '/trending' }, + { + id: 'prefs', + name: 'titles.preferences', + to: '/preferences' + }, { id: 'watch-history', name: 'titles.history', @@ -137,7 +137,7 @@ export default { ] if (this.$store.getters['auth/isCurrentlyAuthenticated']) { - links.splice(2, 0, { + links.splice(0, 0, { id: 'feed', name: 'titles.feed', to: '/feed'