X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e1aac257a34c4c0210ea1663a7f6dd0b9c482e5d..07dbadec1906eed46de8ecd89113a434d8340322:/src/store/collection-panel/collection-panel-action.ts diff --git a/src/store/collection-panel/collection-panel-action.ts b/src/store/collection-panel/collection-panel-action.ts index f2774f6fb3..e1b3a376e3 100644 --- a/src/store/collection-panel/collection-panel-action.ts +++ b/src/store/collection-panel/collection-panel-action.ts @@ -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));