mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Disable account linking on collapsed toots too
This commit is contained in:
parent
5df7bc3a8b
commit
59503a88ae
@ -169,7 +169,8 @@ class StatusUnextended extends ImmutablePureComponent {
|
|||||||
if (e.button === 0) {
|
if (e.button === 0) {
|
||||||
const id = Number(e.currentTarget.getAttribute('data-id'));
|
const id = Number(e.currentTarget.getAttribute('data-id'));
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
this.context.router.history.push(`/accounts/${id}`);
|
if (this.state.isCollapsed) this.handleCollapsedClick();
|
||||||
|
else this.context.router.history.push(`/accounts/${id}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user