mirror of https://github.com/LemmyNet/lemmy.git
Adding showContext for comments to more places by default.
parent
a03b9d8f02
commit
1f0439badd
|
@ -189,6 +189,7 @@ export class Community extends Component<any, State> {
|
||||||
nodes={commentsToFlatNodes(this.state.comments)}
|
nodes={commentsToFlatNodes(this.state.comments)}
|
||||||
noIndent
|
noIndent
|
||||||
sortType={this.state.sort}
|
sortType={this.state.sort}
|
||||||
|
showContext
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -423,6 +423,7 @@ export class Main extends Component<any, MainState> {
|
||||||
noIndent
|
noIndent
|
||||||
showCommunity
|
showCommunity
|
||||||
sortType={this.state.sort}
|
sortType={this.state.sort}
|
||||||
|
showContext
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -276,6 +276,7 @@ export class Post extends Component<any, PostState> {
|
||||||
moderators={this.state.moderators}
|
moderators={this.state.moderators}
|
||||||
admins={this.state.admins}
|
admins={this.state.admins}
|
||||||
postCreatorId={this.state.post.creator_id}
|
postCreatorId={this.state.post.creator_id}
|
||||||
|
showContext
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue