Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken link of the sample data path in the Overview page
Browse files Browse the repository at this point in the history
The 'Try our sample data' link in the opensearch dashboards
overview page is broken. It has to be pointed to the path
`/home#/tutorial_directory/sampleData`. This commit fixes it.
It also updates the similar link in home to keep it aligned.

Signed-off-by: Venu Vardhan Reddy Tekula <[email protected]>
vchrombie committed Apr 24, 2021
1 parent b563989 commit 6339a91
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ export const AddData: FC<Props> = ({ addBasePath, features }) => (
<EuiButtonEmpty
className="homDataAdd__actionButton"
flush="left"
href="#/tutorial_directory/sampleData"
href="/app/home#/tutorial_directory/sampleData"
iconType="visTable"
size="xs"
>
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ export const AddData: FC<Props> = ({ addBasePath, features }) => {
<EuiButtonEmpty
className="osdOverviewDataAdd__actionButton"
flush="left"
href={addBasePath('#/tutorial_directory/sampleData')}
href="/app/home#/tutorial_directory/sampleData"
iconType="visTable"
size="xs"
>

0 comments on commit 6339a91

Please sign in to comment.