mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 16:39:55 +00:00
Adding showContext for comments to more places by default.
This commit is contained in:
parent
a03b9d8f02
commit
1f0439badd
3 changed files with 3 additions and 0 deletions
1
ui/src/components/community.tsx
vendored
1
ui/src/components/community.tsx
vendored
|
@ -189,6 +189,7 @@ export class Community extends Component<any, State> {
|
|||
nodes={commentsToFlatNodes(this.state.comments)}
|
||||
noIndent
|
||||
sortType={this.state.sort}
|
||||
showContext
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
1
ui/src/components/main.tsx
vendored
1
ui/src/components/main.tsx
vendored
|
@ -423,6 +423,7 @@ export class Main extends Component<any, MainState> {
|
|||
noIndent
|
||||
showCommunity
|
||||
sortType={this.state.sort}
|
||||
showContext
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
1
ui/src/components/post.tsx
vendored
1
ui/src/components/post.tsx
vendored
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue