diff options
author | abcang <abcang1015@gmail.com> | 2019-05-28 04:56:29 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-05-27 21:56:29 +0200 |
commit | 3593b854233da1dbb49e95c929019c60a53eca79 (patch) | |
tree | 394ea17b6328948bb2563a8163d58f1c3c18c3ec /app | |
parent | 8d5dcc9301c422f131167574da550f8cdaedb73f (diff) |
Display notifications count on a new single column (#10859)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/reducers/notifications.js | 2 |
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, }); |