mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 16:54:31 +00:00
Fix linting issues
This commit is contained in:
parent
516561745f
commit
6f7078d77c
|
@ -122,7 +122,7 @@ class StatusContent extends PureComponent {
|
|||
} else if (link.textContent[0] === '#' || (link.previousSibling && link.previousSibling.textContent && link.previousSibling.textContent[link.previousSibling.textContent.length - 1] === '#')) {
|
||||
link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
|
||||
link.setAttribute('href', `/tags/${link.text.replace(/^#/, '')}`);
|
||||
} else if (status.get('uri') === link.href) {
|
||||
} else if (status.get('uri') === link.href) {
|
||||
// the link points to the source of the status. this happens e.g. with lemmy posts.
|
||||
// there is no use in trying to open the url on this instance as it's already opened.
|
||||
link.setAttribute('title', link.href);
|
||||
|
|
Loading…
Reference in a new issue