diff --git a/components/home/BookshelfNavBar.vue b/components/home/BookshelfNavBar.vue index 792fa60b..0d04dfe6 100644 --- a/components/home/BookshelfNavBar.vue +++ b/components/home/BookshelfNavBar.vue @@ -60,8 +60,8 @@ export default { if (this.userIsAdminOrUp) { items.push({ - to: '/bookshelf/search', - routeName: 'bookshelf-search', + to: '/bookshelf/add-podcast', + routeName: 'bookshelf-add-podcast', iconPack: 'material-icons', icon: 'podcasts', iconClass: 'text-xl', diff --git a/pages/bookshelf.vue b/pages/bookshelf.vue index e089bb37..1e438de6 100644 --- a/pages/bookshelf.vue +++ b/pages/bookshelf.vue @@ -24,7 +24,7 @@ export default { return this.$route.name === 'bookshelf-latest' }, isPodcastSearch() { - return this.$route.name === 'bookshelf-search' + return this.$route.name === 'bookshelf-add-podcast' } } } diff --git a/pages/bookshelf/search.vue b/pages/bookshelf/add-podcast.vue similarity index 100% rename from pages/bookshelf/search.vue rename to pages/bookshelf/add-podcast.vue