mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-18 08:12:01 +03:00
Fix items not updating when items count = 0
This commit is contained in:
parent
f67fdd5759
commit
97f7a066e2
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ function Timeline({
|
||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
let { done, value } = await fetchItems(firstLoad);
|
let { done, value } = await fetchItems(firstLoad);
|
||||||
if (value?.length) {
|
if (Array.isArray(value)) {
|
||||||
if (boostsCarousel) {
|
if (boostsCarousel) {
|
||||||
value = groupBoosts(value);
|
value = groupBoosts(value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue