about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/home_timeline
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-02-19 22:42:38 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-02-19 22:42:38 +0100
commite8ea9669c98328cee7b989d1080cd95ee83b1b9f (patch)
treed6f66d44961b87760ff7b4eb2c462309fa8f8a8e /app/assets/javascripts/components/features/home_timeline
parent6b4ef92c6fbf8b63c1ed8314bc230350eff340b1 (diff)
Fix links and wording
Diffstat (limited to 'app/assets/javascripts/components/features/home_timeline')
-rw-r--r--app/assets/javascripts/components/features/home_timeline/index.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/home_timeline/index.jsx b/app/assets/javascripts/components/features/home_timeline/index.jsx
index 23e198701..1730b76ec 100644
--- a/app/assets/javascripts/components/features/home_timeline/index.jsx
+++ b/app/assets/javascripts/components/features/home_timeline/index.jsx
@@ -23,7 +23,7 @@ const HomeTimeline = React.createClass({
     return (
       <Column icon='home' heading={intl.formatMessage(messages.title)}>
         <ColumnSettingsContainer />
-        <StatusListContainer {...this.props} type='home' emptyMessage={<FormattedMessage id='empty_column.home' defaultMessage="You aren’t following anyone yet. Visit {public} or use search to get started and meet other users." values={{ public: <Link to='/timelines/public'><FormattedMessage id='empty_column.home.public_timeline' defaultMessage='the public timeline' /></Link> }} />} />
+        <StatusListContainer {...this.props} type='home' emptyMessage={<FormattedMessage id='empty_column.home' defaultMessage="You aren't following anyone yet. Visit {public} or use search to get started and meet other users." values={{ public: <Link to='/timelines/public'><FormattedMessage id='empty_column.home.public_timeline' defaultMessage='the public timeline' /></Link> }} />} />
       </Column>
     );
   },