mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 07:08:07 +01:00
Fix detailed status timestamp link target not being the original URL
This commit is contained in:
parent
9b1ecf7aee
commit
4050beb6e2
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ export const DetailedStatus: React.FC<{
|
|||
<div className='detailed-status__meta__line'>
|
||||
<a
|
||||
className='detailed-status__datetime'
|
||||
href={`/@${status.getIn(['account', 'acct'])}/${status.get('id')}`}
|
||||
href={status.get('url')}
|
||||
target='_blank'
|
||||
rel='noopener noreferrer'
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue