Skip to content

Commit c25f6ae

Browse files
committed
Fix type errors
1 parent 67521e7 commit c25f6ae

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

x-pack/plugins/beats_management/public/bootstrap.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
*/
66

77
import { i18n } from '@kbn/i18n';
8-
import { BASE_PATH } from '../../../legacy/plugins/beats_management/common/constants';
98
import { FrontendLibs } from './lib/types';
109
import { compose } from './lib/compose/kibana';
1110

@@ -35,7 +34,6 @@ async function startApp(libs: FrontendLibs, core: CoreSetup<StartDeps>) {
3534
name: i18n.translate('xpack.beatsManagement.centralManagementLinkLabel', {
3635
defaultMessage: 'Central Management',
3736
}),
38-
basePath: BASE_PATH,
3937
async mount(params) {
4038
const [coreStart, pluginsStart] = await core.getStartServices();
4139
setServices(coreStart, pluginsStart, params);

x-pack/plugins/beats_management/public/lib/adapters/framework/testing_framework_adapter.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,7 @@ export class TestingFrameworkAdapter implements FrameworkAdapter {
4848
throw new Error('not yet implamented');
4949
}
5050

51-
public registerManagementUI(settings: {
52-
sectionId?: string;
53-
name: string;
54-
basePath: string;
55-
visable?: boolean;
56-
order?: number;
57-
}) {
51+
public registerManagementUI(settings: { sectionId?: string; name: string; order?: number }) {
5852
throw new Error('not yet implamented');
5953
}
6054
}

0 commit comments

Comments
 (0)