about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2019-05-28 04:56:29 +0900
committermultiple creatures <dev@multiple-creature.party>2019-11-19 15:33:11 -0600
commitb08d29418c0582556b3c3c09faf6e1e2ac8561b7 (patch)
treeeceb9a09579a900bb0f1f7a92c72e1d9fc27acde /app
parent191a993eb35ebd7b7c94d3a14e840655ec791179 (diff)
Display notifications count on a new single column (#10859)
Diffstat (limited to 'app')
-rw-r--r--app/javascript/mastodon/reducers/notifications.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/reducers/notifications.js b/app/javascript/mastodon/reducers/notifications.js
index c891f4a52..4d9604de9 100644
--- a/app/javascript/mastodon/reducers/notifications.js
+++ b/app/javascript/mastodon/reducers/notifications.js
@@ -18,7 +18,7 @@ import compareId from '../compare_id';
 const initialState = ImmutableMap({
   items: ImmutableList(),
   hasMore: true,
-  top: true,
+  top: false,
   unread: 0,
   isLoading: false,
 });