Merge branch 'main' into feat/hide-avatars-on-listings

This commit is contained in:
Jay Sitter 2023-06-26 08:50:41 -04:00 committed by GitHub
commit c04ce03cf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View file

@ -79,7 +79,7 @@ export class CommentNodes extends Component<CommentNodesProps, any> {
const maxComments = this.props.maxCommentsShown ?? this.props.nodes.length; const maxComments = this.props.maxCommentsShown ?? this.props.nodes.length;
const borderColor = this.props.depth const borderColor = this.props.depth
? colorList[this.props.depth % colorList.length] ? colorList[(this.props.depth - 1) % colorList.length]
: colorList[0]; : colorList[0];
return ( return (
@ -89,7 +89,11 @@ export class CommentNodes extends Component<CommentNodesProps, any> {
"ms-1": !!this.props.isChild, "ms-1": !!this.props.isChild,
"border-top border-light": !this.props.noBorder, "border-top border-light": !this.props.noBorder,
})} })}
style={`border-left: 2px solid ${borderColor} !important;`} style={
this.props.isChild
? `border-left: 2px solid ${borderColor} !important;`
: undefined
}
> >
{this.props.nodes.slice(0, maxComments).map(node => ( {this.props.nodes.slice(0, maxComments).map(node => (
<CommentNode <CommentNode

View file

@ -531,7 +531,7 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
checked={this.state.form.nsfw} checked={this.state.form.nsfw}
onChange={linkEvent(this, handlePostNsfwChange)} onChange={linkEvent(this, handlePostNsfwChange)}
/> />
<label className="form-check-label"> <label className="form-check-label" htmlFor="post-nsfw">
{I18NextService.i18n.t("nsfw")} {I18NextService.i18n.t("nsfw")}
</label> </label>
</div> </div>