client refactor: use pagination in drive component #203

Manually merged
Johann150 merged 6 commits from refactor-drive into main 2022-10-17 21:00:44 +00:00
Showing only changes of commit 54a6f1c643 - Show all commits

View file

@ -448,7 +448,7 @@ function move(target?: string | foundkey.entities.DriveFolder) {
// display new folder hierarchy appropriately
hierarchyFolders = [];
let parent = foldertoMove.parent;
let parent = folderToMove.parent;
while (parent) {
hierarchyFolders.unshift(parent);
parent = parent.parent;