diff --git a/web/app/components/comment/comment.jsx b/web/app/components/comment/comment.jsx index eb50fc25..79af82b5 100644 --- a/web/app/components/comment/comment.jsx +++ b/web/app/components/comment/comment.jsx @@ -141,6 +141,7 @@ export default class Comment extends Component { render(props, { userBlocked, pinned, score, scoreIncreased, scoreDecreased, isInputVisible }) { const { data, mix, mods = {} } = props; const isAdmin = store.get('user').admin; + const isGuest = !Object.keys(store.get('user')).length; const time = new Date(data.time); // TODO: which format for datetime should we choose? @@ -195,7 +196,7 @@ export default class Comment extends Component { {o.time} { - !mods.disabled && ( + !mods.disabled && !isGuest && ( reply