diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-12-02 11:43:49 +0100 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-09-08 03:37:07 -0500 |
commit | 550b30e6d6abcad0b816434de49adf349fc35e75 (patch) | |
tree | 86732295089d1cb76d43c1e7465e464d33c95c39 /app | |
parent | 2d0e20ed990be8e6f537b2b19650a18cad7503c6 (diff) |
[Glitch] Adds follow action timestamp to notification
Port 330e320b40e975472e042730f9dfb23083f170e3 to glitch-soc
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/features/notifications/components/follow.js | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/app/javascript/flavours/glitch/features/notifications/components/follow.js b/app/javascript/flavours/glitch/features/notifications/components/follow.js index 2b71f3107..5f405e976 100644 --- a/app/javascript/flavours/glitch/features/notifications/components/follow.js +++ b/app/javascript/flavours/glitch/features/notifications/components/follow.js @@ -82,11 +82,13 @@ export default class NotificationFollow extends ImmutablePureComponent { <Icon fixedWidth id='user-plus' /> </div> - <FormattedMessage - id='notification.follow' - defaultMessage='{name} followed you' - values={{ name: link }} - /> + <span title={notification.get('created_at')}> + <FormattedMessage + id='notification.follow' + defaultMessage='{name} followed you' + values={{ name: link }} + /> + </span> </div> <AccountContainer hidden={hidden} id={account.get('id')} withNote={false} /> |