Don't show "comments disabled" while still fetching.
## Issue 6513
This commit is contained in:
parent
1882e78d51
commit
9c05239b04
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ function CommentsReplies(props: Props) {
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
{totalReplies < numDirectReplies && (
|
{!isFetchingByParentId[parentId] && totalReplies < numDirectReplies && (
|
||||||
<li className="comment comment--reply">
|
<li className="comment comment--reply">
|
||||||
<div className="comment__content">
|
<div className="comment__content">
|
||||||
<div className="comment__thumbnail-wrapper">
|
<div className="comment__thumbnail-wrapper">
|
||||||
|
|
Loading…
Add table
Reference in a new issue