logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 61bfce5aa939add6829a216b4ae8e3c660d85791
parent: dd7ef0dc41584089a97444d8192bc61505108e6c
Author: Ondřej Hruška <ondra@ondrovo.com>
Date:   Tue,  8 Aug 2017 22:13:04 +0200

add missing @ to the onboarding modal (#4560)


Diffstat:

Mapp/javascript/mastodon/features/ui/components/onboarding_modal.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/javascript/mastodon/features/ui/components/onboarding_modal.js b/app/javascript/mastodon/features/ui/components/onboarding_modal.js @@ -30,7 +30,7 @@ const PageOne = ({ acct, domain }) => ( <div> <h1><FormattedMessage id='onboarding.page_one.welcome' defaultMessage='Welcome to Mastodon!' /></h1> <p><FormattedMessage id='onboarding.page_one.federation' defaultMessage='Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.' /></p> - <p><FormattedMessage id='onboarding.page_one.handle' defaultMessage='You are on {domain}, so your full handle is {handle}' values={{ domain, handle: <strong>{acct}@{domain}</strong> }} /></p> + <p><FormattedMessage id='onboarding.page_one.handle' defaultMessage='You are on {domain}, so your full handle is {handle}' values={{ domain, handle: <strong>@{acct}@{domain}</strong> }} /></p> </div> </div> );