From 8a462acd0f7a7fd244aebf4e7951607802e45b87 Mon Sep 17 00:00:00 2001 From: Tim Fesenko Date: Wed, 21 Sep 2016 11:45:41 -0400 Subject: [PATCH] fix depth check, resolves #298 (#299) --- app/components/cards/Comment.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/cards/Comment.jsx b/app/components/cards/Comment.jsx index 4cad02aa19..729b51d519 100644 --- a/app/components/cards/Comment.jsx +++ b/app/components/cards/Comment.jsx @@ -258,7 +258,7 @@ class CommentImpl extends React.Component { noImage={noImage || !pictures} jsonMetadata={jsonMetadata} />); controls = (
- {!$STM_Config.read_only_mode && depth !== 5 && Reply} + {!$STM_Config.read_only_mode && depth < 6 && Reply} {showEditOption &&    Edit