Skip to content

Commit f4e9b3c

Browse files
committed
updates on JS file names
1 parent ca7e231 commit f4e9b3c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/search/tutorial-javascript-search-query-integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The Azure Function pulls in the search configuration information, and fulfills t
4343

4444
Call the Azure Function in the React client with the following code.
4545

46-
:::code language="javascript" source="~/azure-search-javascript-samples/search-website-functions-v4/client/src/pages/Search/Search.js" highlight="41-52" :::
46+
:::code language="javascript" source="~/azure-search-javascript-samples/search-website-functions-v4/client/src/pages/Search.js" highlight="80-101" :::
4747

4848
## Azure Function: Suggestions from the catalog
4949

@@ -57,7 +57,7 @@ The search suggester, `sg`, is defined in the [schema file](https://github.com/A
5757

5858
The Suggest function API is called in the React app at `\src\components\SearchBar\SearchBar.js` as part of component initialization:
5959

60-
:::code language="javascript" source="~/azure-search-javascript-samples/search-website-functions-v4/client/src/components/SearchBar/SearchBar.js" highlight="52-60" :::
60+
:::code language="javascript" source="~/azure-search-javascript-samples/search-website-functions-v4/client/src/components/SearchBar.js" highlight="52-60" :::
6161

6262
## Azure Function: Get specific document
6363

@@ -69,7 +69,7 @@ The [Lookup API](https://github.com/Azure-Samples/azure-search-javascript-sample
6969

7070
This function API is called in the React app at `\src\pages\Details\Detail.js` as part of component initialization:
7171

72-
:::code language="javascript" source="~/azure-search-javascript-samples/search-website-functions-v4/client/src/pages/Details/Details.js" highlight="20-30" :::
72+
:::code language="javascript" source="~/azure-search-javascript-samples/search-website-functions-v4/client/src/pages/Details.js" highlight="20-30" :::
7373

7474
## Next steps
7575

0 commit comments

Comments
 (0)