diff --git a/client/components/app/Appbar.vue b/client/components/app/Appbar.vue index 21403d64..88439903 100644 --- a/client/components/app/Appbar.vue +++ b/client/components/app/Appbar.vue @@ -6,7 +6,7 @@ arrow_back -

AudioBookshelf

+

audiobookshelf

diff --git a/client/layouts/default.vue b/client/layouts/default.vue index 3d1ebddb..97430777 100644 --- a/client/layouts/default.vue +++ b/client/layouts/default.vue @@ -245,9 +245,6 @@ export default { showSuccessToast(message) { this.$toast.success(message) }, - logEvtReceived(payload) { - this.$store.commit('logs/logEvt', payload) - }, backupApplied() { // Force refresh location.reload() @@ -313,8 +310,6 @@ export default { this.socket.on('show_error_toast', this.showErrorToast) this.socket.on('show_success_toast', this.showSuccessToast) - this.socket.on('log', this.logEvtReceived) - this.socket.on('backup_applied', this.backupApplied) }, showUpdateToast(versionData) { diff --git a/client/pages/config/log.vue b/client/pages/config/log.vue index c8026a13..b5b75a86 100644 --- a/client/pages/config/log.vue +++ b/client/pages/config/log.vue @@ -1,8 +1,12 @@