Make loader abrupt if >= 3 replies
This commit is contained in:
parent
e1447053b3
commit
bb3621e424
1 changed files with 1 additions and 1 deletions
|
@ -906,7 +906,7 @@ function StatusThread({ id, closeLink = '/', instance: propInstance }) {
|
||||||
!!heroStatus?.repliesCount &&
|
!!heroStatus?.repliesCount &&
|
||||||
!hasDescendants && (
|
!hasDescendants && (
|
||||||
<div class="status-loading">
|
<div class="status-loading">
|
||||||
<Loader />
|
<Loader abrupt={heroStatus.repliesCount >= 3} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{uiState === 'error' &&
|
{uiState === 'error' &&
|
||||||
|
|
Loading…
Add table
Reference in a new issue