diff --git a/framework/core/js/forum/src/components/NotificationList.js b/framework/core/js/forum/src/components/NotificationList.js index 53e97b1e6..a9a970604 100644 --- a/framework/core/js/forum/src/components/NotificationList.js +++ b/framework/core/js/forum/src/components/NotificationList.js @@ -120,7 +120,10 @@ export default class NotificationList extends Component { app.session.user.pushAttributes({newNotificationsCount: 0}); app.cache.notifications = notifications.sort((a, b) => b.time() - a.time()); }) - .finally(this.loaded.bind(this)); + .finally(() => { + this.loading = false; + m.redraw(); + }); } /**