Update:Remain on same tab in item edit modal when navigating next/prev #867

This commit is contained in:
advplyr 2022-07-29 18:19:19 -05:00
parent 21e1f62c65
commit 45cd39ac0c

View File

@ -190,7 +190,6 @@ export default {
if (prevBook) {
this.unregisterListeners()
this.libraryItem = prevBook
this.selectedTab = 'details'
this.$store.commit('setSelectedLibraryItem', prevBook)
this.$nextTick(this.registerListeners)
} else {
@ -210,7 +209,6 @@ export default {
if (nextBook) {
this.unregisterListeners()
this.libraryItem = nextBook
this.selectedTab = 'details'
this.$store.commit('setSelectedLibraryItem', nextBook)
this.$nextTick(this.registerListeners)
} else {