From 6c04262b5146080942658dbf2928dce3b0330499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KMY=EF=BC=88=E9=9B=AA=E3=81=82=E3=81=99=E3=81=8B=EF=BC=89?= Date: Sat, 5 Oct 2024 09:22:06 +0900 Subject: [PATCH] Update notification.jsx --- .../features/notifications/components/notification.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/notifications/components/notification.jsx b/app/javascript/mastodon/features/notifications/components/notification.jsx index 7683176c1e..c274c35e5d 100644 --- a/app/javascript/mastodon/features/notifications/components/notification.jsx +++ b/app/javascript/mastodon/features/notifications/components/notification.jsx @@ -590,10 +590,11 @@ class Notification extends ImmutablePureComponent { return this.renderStatusReference(notification, link); case 'status': return this.renderStatus(notification, link); - case 'list_status': + case 'list_status': { const list = notification.get('list'); const listLink = {list.get('title')}; return this.renderListStatus(notification, listLink, link); + } case 'update': return this.renderUpdate(notification, link); case 'poll':