diff options
author | ThibG <thib@sitedethib.com> | 2020-01-22 16:26:47 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-22 16:26:47 +0100 |
commit | ec3ee675640fa441b9113d69b743ee22e107002b (patch) | |
tree | c48a17fa753e68377dd5144d853db79ab825379a /app | |
parent | 40852b84bd896fd2f81e8f7dd45f70b121ba70fd (diff) |
Fix unfollow confirmations in account directory (#12922)
Fixes #12921
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/directory/components/account_card.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/directory/components/account_card.js b/app/javascript/mastodon/features/directory/components/account_card.js index 50ad74450..cb47d9db4 100644 --- a/app/javascript/mastodon/features/directory/components/account_card.js +++ b/app/javascript/mastodon/features/directory/components/account_card.js @@ -22,6 +22,7 @@ const messages = defineMessages({ requested: { id: 'account.requested', defaultMessage: 'Awaiting approval' }, unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' }, unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' }, + unfollowConfirm: { id: 'confirmations.unfollow.confirm', defaultMessage: 'Unfollow' }, }); const makeMapStateToProps = () => { |