mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added a member check for showing more menu or not
- This should stop people who are not logged in from showing more menu refs https://github.com/TryGhost/Team/issues/1693
This commit is contained in:
parent
28b566f95a
commit
dd5a4bb35e
1 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,10 @@ const More = (props) => {
|
|||
*/
|
||||
const show = (!!member && comment.status === 'published') || !!admin;
|
||||
|
||||
if (!member) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="relative">
|
||||
{show ? <button onClick={toggleContextMenu}><MoreIcon className='gh-comments-icon gh-comments-icon-more fill-neutral-400 dark:fill-rgba(255,255,255,0.5)' /></button> : null}
|
||||
|
|
Loading…
Add table
Reference in a new issue