Fix non-numeric account identifiers leading to /web/accounts/NaN
I'm not sure what purpose these “+” served?!
This commit is contained in:
@ -15,7 +15,7 @@ export default class StatusPrepend extends React.PureComponent {
|
||||
|
||||
handleClick = (e) => {
|
||||
const { account, parseClick } = this.props;
|
||||
parseClick(e, `/accounts/${+account.get('id')}`);
|
||||
parseClick(e, `/accounts/${account.get('id')}`);
|
||||
}
|
||||
|
||||
Message = () => {
|
||||
|
Reference in New Issue
Block a user