Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdover committed May 12, 2020
1 parent 67521e7 commit c25f6ae
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 0 additions & 2 deletions x-pack/plugins/beats_management/public/bootstrap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/

import { i18n } from '@kbn/i18n';
import { BASE_PATH } from '../../../legacy/plugins/beats_management/common/constants';
import { FrontendLibs } from './lib/types';
import { compose } from './lib/compose/kibana';

Expand Down Expand Up @@ -35,7 +34,6 @@ async function startApp(libs: FrontendLibs, core: CoreSetup<StartDeps>) {
name: i18n.translate('xpack.beatsManagement.centralManagementLinkLabel', {
defaultMessage: 'Central Management',
}),
basePath: BASE_PATH,
async mount(params) {
const [coreStart, pluginsStart] = await core.getStartServices();
setServices(coreStart, pluginsStart, params);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,7 @@ export class TestingFrameworkAdapter implements FrameworkAdapter {
throw new Error('not yet implamented');
}

public registerManagementUI(settings: {
sectionId?: string;
name: string;
basePath: string;
visable?: boolean;
order?: number;
}) {
public registerManagementUI(settings: { sectionId?: string; name: string; order?: number }) {
throw new Error('not yet implamented');
}
}

0 comments on commit c25f6ae

Please sign in to comment.