Browse Source

Disable ESLint rule jsx/anchor-has-content (#3601)

closed-social-glitch-2
Yamagishi Kazutoshi 6 years ago
committed by Eugen Rochko
parent
commit
e969c78645
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/javascript/mastodon/components/media_gallery.js
  2. +1
    -1
      app/javascript/mastodon/features/account/components/header.js

+ 1
- 1
app/javascript/mastodon/components/media_gallery.js View File

@ -86,7 +86,7 @@ class Item extends React.PureComponent {
if (attachment.get('type') === 'image') {
thumbnail = (
<a
<a // eslint-disable-line jsx-a11y/anchor-has-content
className='media-gallery__item-thumbnail'
href={attachment.get('remote_url') || attachment.get('url')}
onClick={this.handleClick}

+ 1
- 1
app/javascript/mastodon/features/account/components/header.js View File

@ -52,7 +52,7 @@ class Avatar extends ImmutablePureComponent {
return (
<Motion defaultStyle={{ radius: 90 }} style={{ radius: spring(isHovered ? 30 : 90, { stiffness: 180, damping: 12 }) }}>
{({ radius }) =>
<a
<a // eslint-disable-line jsx-a11y/anchor-has-content
href={account.get('url')}
className='account__header__avatar'
target='_blank'

Loading…
Cancel
Save