Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Navigation-next] Enable landing page for settings and data administration #7282

Merged
merged 11 commits into from
Jul 19, 2024
2 changes: 2 additions & 0 deletions changelogs/fragments/7282.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
feat:
- Enable landing page for settings and data administration ([#7282](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/7282))
1 change: 1 addition & 0 deletions src/core/public/chrome/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ export { ChromeNavControl, ChromeNavControls } from './nav_controls';
export { ChromeDocTitle } from './doc_title';
export { RightNavigationOrder } from './constants';
export { ChromeRegistrationNavLink, ChromeNavGroupUpdater, NavGroupItemInMap } from './nav_group';
export { fulfillRegistrationLinksToChromeNavLinks } from './utils';
5 changes: 5 additions & 0 deletions src/core/public/chrome/nav_links/nav_link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ export interface ChromeNavLink {
* Hides a link from the navigation.
*/
readonly hidden?: boolean;

/**
* Description of the nav link
*/
readonly description?: string;
}

/** @public */
Expand Down
2 changes: 2 additions & 0 deletions src/core/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ import {
ChromeRegistrationNavLink,
ChromeNavGroupUpdater,
NavGroupItemInMap,
fulfillRegistrationLinksToChromeNavLinks,
} from './chrome';
import { FatalErrorsSetup, FatalErrorsStart, FatalErrorInfo } from './fatal_errors';
import { HttpSetup, HttpStart } from './http';
Expand Down Expand Up @@ -375,6 +376,7 @@ export {
ChromeRegistrationNavLink,
ChromeNavGroupUpdater,
NavGroupItemInMap,
fulfillRegistrationLinksToChromeNavLinks,
};

export { __osdBootstrap__ } from './osd_bootstrap';
Expand Down
Loading
Loading