summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/src/components/community.tsx1
-rw-r--r--ui/src/components/main.tsx1
-rw-r--r--ui/src/components/post.tsx1
3 files changed, 3 insertions, 0 deletions
diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx
index 4e8e9d1b..a921de2c 100644
--- a/ui/src/components/community.tsx
+++ b/ui/src/components/community.tsx
@@ -189,6 +189,7 @@ export class Community extends Component<any, State> {
nodes={commentsToFlatNodes(this.state.comments)}
noIndent
sortType={this.state.sort}
+ showContext
/>
);
}
diff --git a/ui/src/components/main.tsx b/ui/src/components/main.tsx
index 51b31ced..38003312 100644
--- a/ui/src/components/main.tsx
+++ b/ui/src/components/main.tsx
@@ -423,6 +423,7 @@ export class Main extends Component<any, MainState> {
noIndent
showCommunity
sortType={this.state.sort}
+ showContext
/>
);
}
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index 518f07c2..f51ba6ff 100644
--- a/ui/src/components/post.tsx
+++ b/ui/src/components/post.tsx
@@ -276,6 +276,7 @@ export class Post extends Component<any, PostState> {
moderators={this.state.moderators}
admins={this.state.admins}
postCreatorId={this.state.post.creator_id}
+ showContext
/>
</div>
</div>