biomepass
This commit is contained in:
parent
0de087d999
commit
87dd66ad4b
|
@ -142,7 +142,11 @@ export const CommentsTree = (props: Props) => {
|
||||||
<LoadMoreWrapper
|
<LoadMoreWrapper
|
||||||
loadFunction={loadMoreComments}
|
loadFunction={loadMoreComments}
|
||||||
pageSize={COMMENTS_PER_PAGE}
|
pageSize={COMMENTS_PER_PAGE}
|
||||||
hidden={props.shout?.stat?.commented === 0 || commentsLoading() || comments().length >= (props.shout?.stat?.commented || 0)}
|
hidden={
|
||||||
|
props.shout?.stat?.commented === 0 ||
|
||||||
|
commentsLoading() ||
|
||||||
|
comments().length >= (props.shout?.stat?.commented || 0)
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<ul class={styles.comments}>
|
<ul class={styles.comments}>
|
||||||
<For each={sortedComments().filter((r) => !r.reply_to)}>
|
<For each={sortedComments().filter((r) => !r.reply_to)}>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user