diff options
author | abcang <abcang1015@gmail.com> | 2019-05-28 04:56:29 +0900 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-06-13 22:15:31 +0200 |
commit | 9bb4f796db1159f5dc57b6d02527f1304f481932 (patch) | |
tree | 298b28c3e237065f80d46bd2070cb9760406eefe /app/javascript | |
parent | c095eed121b672794d9bd31409c2659b1f2b128b (diff) |
[Glitch] Display notifications count on a new single column
Port 3593b854233da1dbb49e95c929019c60a53eca79 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript')
-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', |