status: turn quote author/text into links to original profile/post

turn-quotes-into-links
Robert Gerus 2022-12-28 01:30:27 +01:00
parent 384ac613d8
commit 5025713c5a
1 changed files with 6 additions and 3 deletions

View File

@ -293,11 +293,14 @@ export default class StatusContent extends React.PureComponent {
id='quote-right'
aria-hidden='true'
key='icon-quote-right' />
<strong class="display-name__html"
dangerouslySetInnerHTML={quoteStatusDisplayName} />
<strong class="display-name__html">
<a onClick={this.handleAccountClick} href={quoteStatus.getIn(['account', 'url'])} dangerouslySetInnerHTML={quoteStatusDisplayName} />
</strong>
</span>
</bdi>
<div dangerouslySetInnerHTML={quoteStatusContent} />
<div>
<a href={quoteStatus.get('url')} target='_blank' rel='noopener noreferrer' dangerouslySetInnerHTML={quoteStatusContent} />
</div>
</blockquote>
</div>
);