Use webdav to retrieve list of files
[arvados.git] / src / store / collection-panel / collection-panel-action.ts
index f2774f6fb384f2d72256e57a93bd9cda92d71493..e1b3a376e32cbb56173b9159cc94e0f5cd8f0f1f 100644 (file)
@@ -36,7 +36,7 @@ export const loadCollection = (uuid: string, kind: ResourceKind) =>
             .get(uuid)
             .then(item => {
                 dispatch(collectionPanelActions.LOAD_COLLECTION_SUCCESS({ item }));
-                return services.collectionFilesService.getFiles(item.uuid);
+                return services.collectionService.files(item.uuid);
             })
             .then(files => {
                 dispatch(collectionPanelFilesAction.SET_COLLECTION_FILES(files));