diff --git a/public/pages/Snapshots/components/IndexSettingsInput/IndexSettingsInput.tsx b/public/pages/Snapshots/components/IndexSettingsInput/IndexSettingsInput.tsx index e628ae8a8..8b72ca8e9 100644 --- a/public/pages/Snapshots/components/IndexSettingsInput/IndexSettingsInput.tsx +++ b/public/pages/Snapshots/components/IndexSettingsInput/IndexSettingsInput.tsx @@ -5,7 +5,7 @@ import { EuiFormRow, EuiText, EuiTextArea, EuiSpacer, EuiLink } from "@elastic/eui"; import React, { useState, ChangeEvent } from "react"; -import { RESTORE_SNAPSHOT_DOCUMENTATION_URL } from "../../../../utils/constants" +import { INDEX_SETTINGS_URL } from "../../../../utils/constants" interface IndexSettingsInputProps { getIndexSettings: (indexSettings: string, ignore: boolean) => void; @@ -38,7 +38,7 @@ const IndexSettingsInput = ({ getIndexSettings, ignore, showError, inputError }:

{`${helperText} `} - + Learn more

diff --git a/public/pages/Snapshots/components/SnapshotRestoreAdvancedOptions/SnapshotRestoreAdvancedOptions.tsx b/public/pages/Snapshots/components/SnapshotRestoreAdvancedOptions/SnapshotRestoreAdvancedOptions.tsx index 6acfc4d03..965e0f451 100644 --- a/public/pages/Snapshots/components/SnapshotRestoreAdvancedOptions/SnapshotRestoreAdvancedOptions.tsx +++ b/public/pages/Snapshots/components/SnapshotRestoreAdvancedOptions/SnapshotRestoreAdvancedOptions.tsx @@ -77,7 +77,7 @@ const SnapshotRestoreAdvancedOptions = ({ label={ } checked={ignoreUnavailable} diff --git a/public/utils/constants.ts b/public/utils/constants.ts index b5967c37e..a45f5a14d 100644 --- a/public/utils/constants.ts +++ b/public/utils/constants.ts @@ -13,7 +13,7 @@ export const ACTIONS_DOCUMENTATION_URL = "https://opensearch.org/docs/im-plugin/ export const STATES_DOCUMENTATION_URL = "https://opensearch.org/docs/im-plugin/ism/policies/#states"; export const ERROR_NOTIFICATION_DOCUMENTATION_URL = "https://opensearch.org/docs/im-plugin/ism/policies/#error-notifications"; export const TRANSITION_DOCUMENTATION_URL = "https://opensearch.org/docs/im-plugin/ism/policies/#transitions"; - +export const INDEX_SETTINGS_URL = "https://opensearch.org/docs/latest/api-reference/index-apis/create-index/#index-settings"; export const SNAPSHOT_MANAGEMENT_DOCUMENTATION_URL = "https://opensearch.org/docs/latest/opensearch/snapshots/snapshot-management/"; export const CRON_EXPRESSION_DOCUMENTATION_URL = "https://opensearch.org/docs/latest/monitoring-plugins/alerting/cron/"; export const RESTORE_SNAPSHOT_DOCUMENTATION_URL =