Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Commit

Permalink
Inventory payload request to use namespace (#209)
Browse files Browse the repository at this point in the history
* Inventory payload requests to use namespace

* Use provider namespace

Co-authored-by: Mike Turley <mike.turley@alum.cs.umass.edu>
  • Loading branch information
gildub and mturley committed Nov 16, 2020
1 parent bdb50d1 commit 61a2c74
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -64,7 +64,7 @@ const VMwareProvidersTable: React.FunctionComponent<IVMwareProvidersTableProps>
});

const inventoryDownloadURL = `/inventory-payload-api/api/v1/extract?providers=${selectedItems
.map((provider) => provider.name)
.map((provider) => `${provider.namespace}/${provider.name}`)
.join()}`;

const columns: ICell[] = [
Expand Down

0 comments on commit 61a2c74

Please sign in to comment.