From 9690e412e15fc789a5566207eb66bf704ed652e0 Mon Sep 17 00:00:00 2001 From: pssandhu Date: Wed, 2 Nov 2022 02:01:03 +0000 Subject: [PATCH] Fix typo in toast notification (#1630) --- UI/Web/src/app/_services/action.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/Web/src/app/_services/action.service.ts b/UI/Web/src/app/_services/action.service.ts index 489c5c30d..0fd52cd60 100644 --- a/UI/Web/src/app/_services/action.service.ts +++ b/UI/Web/src/app/_services/action.service.ts @@ -264,7 +264,7 @@ export class ActionService implements OnDestroy { markChapterAsUnread(seriesId: number, chapter: Chapter, callback?: ChapterActionCallback) { this.readerService.saveProgress(seriesId, chapter.volumeId, chapter.id, 0).pipe(take(1)).subscribe(results => { chapter.pagesRead = 0; - this.toastr.success('Marked as unread'); + this.toastr.success('Marked as Unread'); if (callback) { callback(chapter); } @@ -306,7 +306,7 @@ export class ActionService implements OnDestroy { volume.chapters?.forEach(c => c.pagesRead = 0); }); chapters?.forEach(c => c.pagesRead = 0); - this.toastr.success('Marked as Read'); + this.toastr.success('Marked as Unread'); if (callback) { callback();