Skip to content

Commit

Permalink
feat: pagination
Browse files Browse the repository at this point in the history
Signed-off-by: Hamza Mahjoubi <[email protected]>
  • Loading branch information
hamza221 committed Sep 11, 2024
1 parent 8f5e197 commit 18f513e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/addressbooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ const actions = {
*/
async getContactsFromAddressBook(context, { addressbook }) {
return addressbook.dav
.findAllAndFilterBySimpleProperties(MinimalContactProperties)
.findAllAndFilterBySimpleProperties(MinimalContactProperties,100,5)

Check failure on line 347 in src/store/addressbooks.js

View workflow job for this annotation

GitHub Actions / NPM lint

A space is required after ','

Check failure on line 347 in src/store/addressbooks.js

View workflow job for this annotation

GitHub Actions / NPM lint

A space is required after ','
.then((response) => {
// We don't want to lose the url information
// so we need to parse one by one
Expand Down

0 comments on commit 18f513e

Please sign in to comment.