From 0e3c7cbfd691c0dafa9d67611a0b6cd297a4b64b Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Thu, 27 Aug 2020 14:44:48 +0700 Subject: [PATCH] fixed is_loading display --- src/components/node/NodeNoComments/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/node/NodeNoComments/index.tsx b/src/components/node/NodeNoComments/index.tsx index 47f2bafd..f1395383 100644 --- a/src/components/node/NodeNoComments/index.tsx +++ b/src/components/node/NodeNoComments/index.tsx @@ -20,7 +20,7 @@ const NodeNoComments: FC = ({ is_loading = false, count = 3 }) => { return ( {items} - {is_loading &&
{t(ERRORS.NO_COMMENTS)}
} + {!is_loading &&
{t(ERRORS.NO_COMMENTS)}
}
); };