diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-11-14 00:38:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 00:38:56 +0100 |
commit | 24b2c60beb73ff932b9539587e162283e99fd35d (patch) | |
tree | db62e86cd2370e55ec993c097ff51d701f848043 /app | |
parent | 87fbd08f74451c18d2fdbef551d5933a78375b63 (diff) |
Fix icons having an image role (#20600)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/components/icon.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/icon.js b/app/javascript/mastodon/components/icon.js index d8a17722f..d3d7c591d 100644 --- a/app/javascript/mastodon/components/icon.js +++ b/app/javascript/mastodon/components/icon.js @@ -14,7 +14,7 @@ export default class Icon extends React.PureComponent { const { id, className, fixedWidth, ...other } = this.props; return ( - <i role='img' className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} /> + <i className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} /> ); } |