mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-17 16:13:50 -05:00
Fix clicking on account name in “[xxx] boosted” text leading to broken path
This commit is contained in:
parent
e660a7bbb0
commit
b31748a496
@ -17,7 +17,7 @@ export default class StatusPrepend extends React.PureComponent {
|
|||||||
|
|
||||||
handleClick = (e) => {
|
handleClick = (e) => {
|
||||||
const { account, parseClick } = this.props;
|
const { account, parseClick } = this.props;
|
||||||
parseClick(e, `/${account.get('acct')}`);
|
parseClick(e, `/@${account.get('acct')}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
Message = () => {
|
Message = () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user