diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-12-02 11:43:49 +0100 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:45:15 -0500 |
commit | 48c1d0359a6661f90e5c8a58093572069b06b34a (patch) | |
tree | 5215d14786db105f333a6ae878f19934ff397061 | |
parent | 00dc6609700d2d26a42cdb2944052a826ffcbc1d (diff) |
[Glitch] Adds follow action timestamp to notification
Port 330e320b40e975472e042730f9dfb23083f170e3 to glitch-soc
-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} /> |