From 554e9ec23865039bb6a40e39e2b0827b5c4d154f Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 22 Apr 2022 04:53:09 -0500 Subject: [PATCH] Remove download button form item landing page --- client/components/cards/LazyBookCard.vue | 4 ---- client/pages/item/_id/index.vue | 7 ------- 2 files changed, 11 deletions(-) diff --git a/client/components/cards/LazyBookCard.vue b/client/components/cards/LazyBookCard.vue index 7f58c611..9e31f50e 100644 --- a/client/components/cards/LazyBookCard.vue +++ b/client/components/cards/LazyBookCard.vue @@ -458,10 +458,6 @@ export default { // More menu func this.store.commit('showEditModalOnTab', { libraryItem: this.libraryItem, tab: 'match' }) }, - showEditModalDownload() { - // More menu func - this.store.commit('showEditModalOnTab', { libraryItem: this.libraryItem, tab: 'download' }) - }, openCollections() { this.store.commit('setSelectedLibraryItem', this.libraryItem) this.store.commit('globals/setShowUserCollectionsModal', true) diff --git a/client/pages/item/_id/index.vue b/client/pages/item/_id/index.vue index 3bd10e03..f400c95c 100644 --- a/client/pages/item/_id/index.vue +++ b/client/pages/item/_id/index.vue @@ -127,10 +127,6 @@ - - - - @@ -426,9 +422,6 @@ export default { }) } }, - downloadClick() { - this.$store.commit('showEditModalOnTab', { libraryItem: this.libraryItem, tab: 'download' }) - }, collectionsClick() { this.$store.commit('setSelectedLibraryItem', this.libraryItem) this.$store.commit('globals/setShowUserCollectionsModal', true)