fix mutes and blocks
This commit is contained in:
parent
bcfe1de1b2
commit
869e7cfe0f
3 changed files with 19 additions and 22 deletions
|
|
@ -98,12 +98,13 @@ const List = {
|
|||
|
||||
this.fetchFunction(this.page)
|
||||
.then((result) => {
|
||||
console.log(result)
|
||||
this.loading = false
|
||||
this.bottomedOut = isEmpty(result.items)
|
||||
this.bottomedOut = isEmpty(result)
|
||||
if (this.externalItems) return
|
||||
this.page += 1
|
||||
this.total = result.count
|
||||
this.items.push(...result.items)
|
||||
this.total = result.length
|
||||
this.items.push(...result)
|
||||
})
|
||||
.catch((error) => {
|
||||
this.loading = false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue