mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
make suggested change
This commit is contained in:
parent
b90c0b2bbe
commit
5932fadc3a
1 changed files with 1 additions and 5 deletions
|
@ -240,11 +240,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
|||
aria-label={this.expandText}
|
||||
data-tippy-content={this.expandText}
|
||||
>
|
||||
{this.state.collapsed ? (
|
||||
<Icon icon="plus-square" classes="icon-inline" />
|
||||
) : (
|
||||
<Icon icon="minus-square" classes="icon-inline" />
|
||||
)}
|
||||
<Icon icon={`${this.state.collapsed ? "plus" : "minus"}-square`} classes="icon-inline" />
|
||||
</button>
|
||||
<span className="mr-2">
|
||||
<PersonListing person={cv.creator} />
|
||||
|
|
Loading…
Reference in a new issue