about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/notifications.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-08-26 17:53:26 +0200
committerGitHub <noreply@github.com>2018-08-26 17:53:26 +0200
commita791bac153cf979adeaf3024d65917dbd699b5d9 (patch)
tree6457d080205d519cc674686f690847a308dcd9e4 /app/javascript/mastodon/reducers/notifications.js
parentb9c378848544b8691f9bc12ce718b818ad89dfaf (diff)
Add aria-label to notifications (#8460)
Fix #8192
Diffstat (limited to 'app/javascript/mastodon/reducers/notifications.js')
-rw-r--r--app/javascript/mastodon/reducers/notifications.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/mastodon/reducers/notifications.js b/app/javascript/mastodon/reducers/notifications.js
index 84d4fc698..0b29f19fa 100644
--- a/app/javascript/mastodon/reducers/notifications.js
+++ b/app/javascript/mastodon/reducers/notifications.js
@@ -26,6 +26,7 @@ const notificationToMap = notification => ImmutableMap({
   id: notification.id,
   type: notification.type,
   account: notification.account.id,
+  created_at: notification.created_at,
   status: notification.status ? notification.status.id : null,
 });