mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 22:01:13 +00:00
Merge pull request #1185 from MageJohn/run-prettier
This commit is contained in:
commit
c4f45c503b
1 changed files with 4 additions and 1 deletions
|
@ -240,7 +240,10 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
||||||
aria-label={this.expandText}
|
aria-label={this.expandText}
|
||||||
data-tippy-content={this.expandText}
|
data-tippy-content={this.expandText}
|
||||||
>
|
>
|
||||||
<Icon icon={`${this.state.collapsed ? "plus" : "minus"}-square`} classes="icon-inline" />
|
<Icon
|
||||||
|
icon={`${this.state.collapsed ? "plus" : "minus"}-square`}
|
||||||
|
classes="icon-inline"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
<span className="mr-2">
|
<span className="mr-2">
|
||||||
<PersonListing person={cv.creator} />
|
<PersonListing person={cv.creator} />
|
||||||
|
|
Loading…
Reference in a new issue