mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-09 18:05:09 +00:00
Fixing error for null person_block. Fixes #491
This commit is contained in:
parent
b133406568
commit
b27d6e904c
|
@ -133,7 +133,7 @@ export class Profile extends Component<any, ProfileState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
setPersonBlock() {
|
setPersonBlock() {
|
||||||
this.state.personBlocked = UserService.Instance.myUserInfo.person_blocks
|
this.state.personBlocked = UserService.Instance.myUserInfo?.person_blocks
|
||||||
.map(a => a.target.id)
|
.map(a => a.target.id)
|
||||||
.includes(this.state.personRes?.person_view.person.id);
|
.includes(this.state.personRes?.person_view.person.id);
|
||||||
}
|
}
|
||||||
|
@ -411,7 +411,7 @@ export class Profile extends Component<any, ProfileState> {
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex-grow-1 unselectable pointer mx-2"></div>
|
<div className="flex-grow-1 unselectable pointer mx-2"></div>
|
||||||
{!this.isCurrentUser && (
|
{!this.isCurrentUser && UserService.Instance.myUserInfo && (
|
||||||
<>
|
<>
|
||||||
<a
|
<a
|
||||||
className={`d-flex align-self-start btn btn-secondary mr-2 ${
|
className={`d-flex align-self-start btn btn-secondary mr-2 ${
|
||||||
|
|
Loading…
Reference in a new issue