Skip to content

Commit

Permalink
Fix missing use of route params (#6993)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan authored May 17, 2022
1 parent 9165d2f commit bd4bb5f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ export class FolderLoaderSpacesProject implements FolderLoader {
}

const webDavResponse = yield ref.$client.files.list(
buildWebDavSpacesPath(ref.$route.params.storageId, path || ''),
buildWebDavSpacesPath(
ref.$route.params.storageId,
path || router.currentRoute.params.item || ''
),
1,
DavProperties.Default
)
Expand Down

0 comments on commit bd4bb5f

Please sign in to comment.