18484: Improves CollectionService.get() to support "select".
[arvados-workbench2.git] / src / store / collections / collection-partial-copy-actions.ts
index 49900f2c288d80d739f5d11f131f9cd17a88dba2..d898c50043d85acc39cbb88d5299ed2251226a6b 100644 (file)
@@ -114,7 +114,7 @@ export const copyCollectionPartialToSelectedCollection = ({ collectionUuid }: Co
         const currentCollection = state.collectionPanel.item;
 
         if (currentCollection && !currentCollection.manifestText) {
-            const fetchedCurrentCollection = await services.collectionService.get(currentCollection.uuid);
+            const fetchedCurrentCollection = await services.collectionService.get(currentCollection.uuid, undefined, ['manifestText']);
             currentCollection.manifestText = fetchedCurrentCollection.manifestText;
             currentCollection.unsignedManifestText = fetchedCurrentCollection.unsignedManifestText;
         }