Fixed issue with profiles not loading when account is not fetched from DB
• Fixed: - issue with profiles not loading when account is not fetched from DB. Like if on profile then click a account from "x reposted y", x would not load because the ProfilePage component was not fetching on update, only mount.
This commit is contained in:
parent
312289d88a
commit
e7993f9550
@ -20,6 +20,12 @@ class ProfilePage extends ImmutablePureComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentDidUpdate() {
|
||||||
|
if (!this.props.account) {
|
||||||
|
this.props.dispatch(fetchAccountByUsername(this.props.params.username))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
account,
|
account,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user