chore: add explanation to limit parameter
This commit is contained in:
parent
3d252c1984
commit
e13e64bac4
1 changed files with 2 additions and 0 deletions
|
@ -16,6 +16,8 @@ const listId = computed(() => params.list as string)
|
|||
|
||||
const mastoListAccounts = useMastoClient().v1.lists.$select(listId.value).accounts
|
||||
const paginator = mastoListAccounts.list()
|
||||
|
||||
// the limit parameter is set to 1000 while masto.js issue is still open: https://github.com/neet/masto.js/issues/1282
|
||||
const accountsInList = ref((await useMastoClient().v1.lists.$select(listId.value).accounts.list({ limit: 1000 })))
|
||||
|
||||
const paginatorRef = ref()
|
||||
|
|
Loading…
Reference in a new issue