Skip to content

Commit

Permalink
Merge branch 'namespace-registry-fixes' of https://github.com/cwperks…
Browse files Browse the repository at this point in the history
…/OpenSearch-Dashboards into namespace-registry-fixes
  • Loading branch information
cwperks committed Nov 2, 2022
2 parents 718c1a0 + 32b7e51 commit 57b98b0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- [Vis Builder] Rename wizard to visBuilder in class name, type name and function name ([#2639](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2639))
- [Vis Builder] Rename wizard on save modal and visualization table ([#2645](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2645))
- Change save object type, wizard id and name to visBuilder #2673 ([#2673](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2673))
- [Multi DataSource] Update MD data source documentation link ([#2693](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2693))
- [Save Object Aggregation View] Add extension point in saved object management to register namespaces and show filter ([#2656](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2656))
- [Save Object Aggregation View] Fix for export all after scroll count response changed in PR#2656 ([#2696](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2696))

Expand Down
6 changes: 6 additions & 0 deletions src/core/public/doc_links/doc_links_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,9 @@ export class DocLinksService {
loadingData: `${OPENSEARCH_WEBSITE_DOCS}`,
introduction: `${OPENSEARCH_WEBSITE_DOCS}`,
},
dataSource: {
guide: `${OPENSEARCH_DASHBOARDS_VERSIONED_DOCS}discover/multi-data-sources/`,
},
management: {
opensearchDashboardsGeneralSettings: `${OPENSEARCH_WEBSITE_DOCS}`,
opensearchDashboardsSearchSettings: `${OPENSEARCH_WEBSITE_DOCS}`,
Expand Down Expand Up @@ -759,6 +762,9 @@ export interface DocLinksStart {
readonly loadingData: string;
readonly introduction: string;
};
readonly dataSource: {
readonly guide: string;
};
readonly scriptedFields: {
readonly scriptFields: string;
readonly scriptAggs: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ExperimentalCallout = ({ docLinks }: { docLinks: DocLinksStart }) =
defaultMessage="This feature is experimental and should not be used in a production environment. Any index patterns, visualization, and observability panels will be impacted if the feature is deactivated. For more information see "
/>
}
<EuiLink href={docLinks.links.noDocumentation.indexPatterns.introduction} target="_blank">
<EuiLink href={docLinks.links.noDocumentation.dataSource.guide} target="_blank">
{
<FormattedMessage
id="dataSourcesManagement.experimentalFeatureCallout.documentationText"
Expand Down

0 comments on commit 57b98b0

Please sign in to comment.