From 3eb0dc9ac33945670866fa5fc2c9536d81191c57 Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 9 Nov 2021 16:55:50 -0600 Subject: [PATCH] Fix: collection mark as read #178 --- client/components/tables/collection/BookTableRow.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/tables/collection/BookTableRow.vue b/client/components/tables/collection/BookTableRow.vue index f1c1a892..7ce31da4 100644 --- a/client/components/tables/collection/BookTableRow.vue +++ b/client/components/tables/collection/BookTableRow.vue @@ -143,7 +143,7 @@ export default { .$patch(`/api/user/audiobook/${this.book.id}`, updatePayload) .then(() => { this.isProcessingReadUpdate = false - this.$toast.success(`"${this.title}" Marked as ${updatePayload.isRead ? 'Read' : 'Not Read'}`) + this.$toast.success(`"${this.bookTitle}" Marked as ${updatePayload.isRead ? 'Read' : 'Not Read'}`) }) .catch((error) => { console.error('Failed', error)