Skip to content

Commit 1e10b80

Browse files
committed
fixed broken img links
1 parent 474545b commit 1e10b80

2 files changed

Lines changed: 14 additions & 5 deletions

File tree

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ You can also check out the [free and open version](https://research.getadri.ai)
2626

2727
You can view the installed components in the attached ERP system.
2828

29+
import useBaseUrl from '@docusaurus/useBaseUrl';
30+
2931
<figure style={{ textAlign: 'center' }}>
30-
<img src="/img/installed.png" alt="Installed Components in ECC 6.0 EHP 7 system" />
32+
<img src={useBaseUrl('/img/installed.png')} alt="Installed Components in ECC 6.0 EHP 7 system" />
3133
<figcaption>Installed Components in ECC 6.0 EHP 7 system</figcaption>
3234
</figure>
3335

docs/research-agent/search-index.mdx

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ sidebar_position: 2
44

55
# Find SAP Objects using ChromaSQL
66

7+
import useBaseUrl from '@docusaurus/useBaseUrl';
8+
79
<figure style={{ textAlign: 'center' }}>
8-
<img src="/img/chromasql.png" alt="ChromaSQL Query Builder" />
10+
<img
11+
src={useBaseUrl('/img/chromasql.png')}
12+
alt="ChromaSQL Query Builder"
13+
/>
914
</figure>
1015

1116
You can search standard SAP objects in the chosen ERP system using either of these methods:
@@ -27,7 +32,10 @@ You can also create your own query in the Code Mode.
2732
Below are the available standard components for an ECC 6.0 EHP 7 system.
2833

2934
<figure style={{ textAlign: 'center' }}>
30-
<img src="/img/objects.png" alt="Available Standard Objects" />
35+
<img
36+
src={useBaseUrl('/img/objects.png')}
37+
alt="Available Standard Objects"
38+
/>
3139
</figure>
3240

3341
Refer the following pages for further details.
@@ -67,7 +75,6 @@ This approach could save significant time when you're working with unfamiliar mo
6775

6876
## Additional Resources
6977

70-
- **
7178
- **[ChromaSQL Docs](https://getadriai.github.io/chromasql/)**
7279
- **[How semantic search works?](../ai-concepts/semantic-search.md)**
73-
Learn
80+

0 commit comments

Comments
 (0)