-
diff --git a/client/components/controls/PlaybackSpeedControl.vue b/client/components/controls/PlaybackSpeedControl.vue
index bfa1a282..4494f5de 100644
--- a/client/components/controls/PlaybackSpeedControl.vue
+++ b/client/components/controls/PlaybackSpeedControl.vue
@@ -89,6 +89,8 @@ export default {
this.showMenu = val
}
},
- mounted() {}
+ mounted() {
+ this.currentPlaybackRate = this.playbackRate
+ }
}
\ No newline at end of file
diff --git a/client/pages/audiobook/_id/index.vue b/client/pages/audiobook/_id/index.vue
index 0fc3c8bb..8264d80f 100644
--- a/client/pages/audiobook/_id/index.vue
+++ b/client/pages/audiobook/_id/index.vue
@@ -5,7 +5,20 @@
+
+
+
+
+
+
+
+ play_circle_filled
+
+
+
+
edit
+
@@ -378,6 +391,10 @@ export default {
}
},
methods: {
+ showEditCover() {
+ this.$store.commit('setBookshelfBookIds', [])
+ this.$store.commit('showEditModalOnTab', { audiobook: this.audiobook, tab: 'cover' })
+ },
openEbook() {
this.$store.commit('showEReader', this.audiobook)
},