From c0be817960dbdb5bf4e10f10a7643eb6cb98320a Mon Sep 17 00:00:00 2001 From: jessop Date: Fri, 31 Jul 2020 18:40:36 -0400 Subject: [PATCH] support sdk feature for fast comments --- ui/redux/actions/comments.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/redux/actions/comments.js b/ui/redux/actions/comments.js index 49f41afef..40cdc4970 100644 --- a/ui/redux/actions/comments.js +++ b/ui/redux/actions/comments.js @@ -16,6 +16,8 @@ export function doCommentList(uri: string, page: number = 1, pageSize: number = claim_id: claimId, page, page_size: pageSize, + include_replies: true, + skip_validation: true, }) .then((result: CommentListResponse) => { const { items: comments } = result;