Skip to content

Commit

Permalink
omit settings changes
Browse files Browse the repository at this point in the history
Signed-off-by: tygao <[email protected]>
  • Loading branch information
raintygao committed Apr 19, 2024
1 parent 4de20fc commit 5c08bbf
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/plugins/advanced_settings/public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
*/

import { i18n } from '@osd/i18n';
import { CoreSetup, Plugin } from '../../../core/public';
import { FeatureCatalogueCategory } from '../../home/public';
import { ComponentRegistry } from './component_registry';
import { AdvancedSettingsSetup, AdvancedSettingsStart, AdvancedSettingsPluginSetup } from './types';
import { CoreSetup, Plugin, CoreStart } from '../../../core/public';

const component = new ComponentRegistry();

Expand Down Expand Up @@ -77,15 +77,7 @@ export class AdvancedSettingsPlugin
};
}

public start(core: CoreStart) {
core.chrome.navControls.registerRightNavigation({
order: 1,
appId: 'management/opensearch-dashboards/settings',
http: core.http,
application: core.application,
iconType: 'gear',
title,
});
public start() {
return {
component: component.start,
};
Expand Down

0 comments on commit 5c08bbf

Please sign in to comment.