0
Fork 0
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:
James Morris 2022-07-19 17:51:17 +01:00
parent 28b566f95a
commit dd5a4bb35e

View file

@ -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}