From b730aa520dd73f249c3a6cd86920dc7433d7b66d Mon Sep 17 00:00:00 2001 From: 1pav <60271007+1pav@users.noreply.github.com> Date: Thu, 4 Mar 2021 17:13:51 +0100 Subject: [PATCH] Reset scroll position on mark page as read --- ui/static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/static/js/app.js b/ui/static/js/app.js index f944737f..7fadcde0 100644 --- a/ui/static/js/app.js +++ b/ui/static/js/app.js @@ -106,7 +106,7 @@ function markPageAsRead() { } if (showOnlyUnread) { - window.location.reload(); + window.location.href = window.location.href; } else { goToPage("next", true); }