diff options
author | abcang <abcang1015@gmail.com> | 2019-05-28 04:56:29 +0900 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-22 01:23:45 -0600 |
commit | d026535638e42bc88a8610f0f8585f8d7284b2b8 (patch) | |
tree | 5c3880ed4d88183eb906816cac2b7a214e8fe12e | |
parent | ae1f3313ffee64aa718f570f8680abc5eba56af3 (diff) |
[Glitch] Display notifications count on a new single column
Port 3593b854233da1dbb49e95c929019c60a53eca79 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/reducers/notifications.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/reducers/notifications.js b/app/javascript/flavours/glitch/reducers/notifications.js index 04ae3d406..5bbf9c822 100644 --- a/app/javascript/flavours/glitch/reducers/notifications.js +++ b/app/javascript/flavours/glitch/reducers/notifications.js @@ -27,7 +27,7 @@ import compareId from 'flavours/glitch/util/compare_id'; const initialState = ImmutableMap({ items: ImmutableList(), hasMore: true, - top: true, + top: false, mounted: 0, unread: 0, lastReadId: '0', |