mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Commented out reply component as we won't get to it yet
This commit is contained in:
parent
fdc9e5f2e9
commit
22c99f3b31
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ import React from 'react';
|
||||||
import AppContext from '../AppContext';
|
import AppContext from '../AppContext';
|
||||||
import Avatar from './Avatar';
|
import Avatar from './Avatar';
|
||||||
import Like from './Like';
|
import Like from './Like';
|
||||||
import Reply from './Reply';
|
// import Reply from './Reply';
|
||||||
import More from './More';
|
import More from './More';
|
||||||
import EditForm from './EditForm';
|
import EditForm from './EditForm';
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ class Comment extends React.Component {
|
||||||
</div>
|
</div>
|
||||||
<div className="ml-14 flex gap-5">
|
<div className="ml-14 flex gap-5">
|
||||||
<Like comment={comment} />
|
<Like comment={comment} />
|
||||||
<Reply comment={comment} />
|
{/* <Reply comment={comment} /> */}
|
||||||
<More comment={comment} show={this.hasMoreContextMenu} toggleEdit={this.toggleEditMode} />
|
<More comment={comment} show={this.hasMoreContextMenu} toggleEdit={this.toggleEditMode} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue