Skip to content

Commit

Permalink
DC-866: Change search API parameter to use domain id instead of `na…
Browse files Browse the repository at this point in the history
…me` (#4755)
  • Loading branch information
pshapiro4broad authored Apr 2, 2024
1 parent 01f55e3 commit f5cd9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ajax/DataRepo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export const DataRepo = (signal?: AbortSignal): DataRepoContract => ({
searchConcepts: async (domain: SnapshotBuilderConcept, searchText: string): Promise<GetConceptsResponse> => {
return callDataRepo(
`repository/v1/datasets/${datasetId}/snapshotBuilder/concepts/${
domain.name
domain.id
}/search?searchText=${encodeURIComponent(searchText)}`
);
},
Expand Down

0 comments on commit f5cd9a8

Please sign in to comment.