add pagination arguments

This commit is contained in:
Julia Gru
2023-07-21 16:38:24 +02:00
parent 54983914fd
commit a31bb62ac0

View File

@@ -145,7 +145,7 @@ export class UmbPartialViewsRepository
await this.#init;
const { data, error } = await this.#treeDataSource.getChildrenOf({ path });
const { data, error } = await this.#treeDataSource.getChildrenOf({ path, skip: 0, take: 100 });
if (data) {
this.#treeStore!.appendItems(data.items);
}