Commit 73dc3116 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Hide replies expander from deleted comments.

parent d3cc75a5
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -67,6 +67,11 @@ Ext.define('Docs.view.comments.List', {
        }

        Ext.Array.forEach(comments, function(comment) {
            // add no expanders for deleted comments.
            if (comment.get("deleted")) {
                return;
            }

            new Docs.view.comments.RepliesExpander({
                count: comment.get("replyCount"),
                target: comment.get("target"),