about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/account_timeline/components/moved_note.js
diff options
context:
space:
mode:
authorNaoki Kosaka <n.k@mail.yukimochi.net>2018-09-28 00:08:56 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-09-27 17:08:56 +0200
commit8bae14591bfb4fc9dd9d89d8082ac0123b03edaa (patch)
tree071a288aaf540a58961db25695f930f5afe40469 /app/javascript/mastodon/features/account_timeline/components/moved_note.js
parent15fc2b76f95bc3c83ce3f5ee0a8142cde5fa6b0b (diff)
Migrate to font-awesome 5.0. (#8799)
Diffstat (limited to 'app/javascript/mastodon/features/account_timeline/components/moved_note.js')
-rw-r--r--app/javascript/mastodon/features/account_timeline/components/moved_note.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/account_timeline/components/moved_note.js b/app/javascript/mastodon/features/account_timeline/components/moved_note.js
index 280389bba..ff3290031 100644
--- a/app/javascript/mastodon/features/account_timeline/components/moved_note.js
+++ b/app/javascript/mastodon/features/account_timeline/components/moved_note.js
@@ -33,7 +33,7 @@ export default class MovedNote extends ImmutablePureComponent {
     return (
       <div className='account__moved-note'>
         <div className='account__moved-note__message'>
-          <div className='account__moved-note__icon-wrapper'><i className='fa fa-fw fa-suitcase account__moved-note__icon' /></div>
+          <div className='account__moved-note__icon-wrapper'><i className='fas fa-fw fa-suitcase account__moved-note__icon' /></div>
           <FormattedMessage id='account.moved_to' defaultMessage='{name} has moved to:' values={{ name: <bdi><strong dangerouslySetInnerHTML={displayNameHtml} /></bdi> }} />
         </div>