From b54be0586d4559ed0e4a22c60dcf1409f77b4e22 Mon Sep 17 00:00:00 2001 From: Florian Heft Date: Sat, 10 Jun 2023 01:08:08 +0200 Subject: [PATCH] Only show 'saved' tab on own profile page * Users can't view saved posts of other users. * fixes #1090 --- src/shared/components/person/profile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/person/profile.tsx b/src/shared/components/person/profile.tsx index 42c7c30..8118650 100644 --- a/src/shared/components/person/profile.tsx +++ b/src/shared/components/person/profile.tsx @@ -317,7 +317,7 @@ export class Profile extends Component< {this.getRadio(PersonDetailsView.Overview)} {this.getRadio(PersonDetailsView.Comments)} {this.getRadio(PersonDetailsView.Posts)} - {this.getRadio(PersonDetailsView.Saved)} + {this.amCurrentUser && this.getRadio(PersonDetailsView.Saved)} ); } -- 2.44.1