diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-12-13 21:11:18 +0100 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-12-13 21:58:48 +0100 |
commit | c20c6c202904afee1db514be55b4b943d78df315 (patch) | |
tree | eb8c01e438e5ec5ea5904712feebb91e6de25762 /app | |
parent | 1e656c36322f4f941b8d432243454c16273d25b6 (diff) |
[Glitch] Fix hasMore in notifications
Diffstat (limited to 'app')
-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 0b816e85e..b65c51f32 100644 --- a/app/javascript/flavours/glitch/reducers/notifications.js +++ b/app/javascript/flavours/glitch/reducers/notifications.js @@ -96,7 +96,7 @@ const expandNormalizedNotifications = (state, notifications, next) => { } if (!next) { - mutable.set('hasMore', true); + mutable.set('hasMore', false); } mutable.set('isLoading', false); |