Skip to content

Commit

Permalink
fixed some missing typing
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed Jul 6, 2020
1 parent 2ae533a commit 3cc2cb5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
5 changes: 0 additions & 5 deletions x-pack/plugins/apm/server/feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ export const APM_FEATURE = {
'alerting:delete',
'actions:delete',
],
catalogue: ['apm'],
savedObject: {
all: ['alert'],
read: [],
},
},
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,7 @@ describe('edit button', () => {
actionVariables: { context: [], state: [] },
defaultActionGroupId: 'default',
producer: 'alerting',
authorizedConsumers,
};

expect(
Expand Down Expand Up @@ -685,6 +686,7 @@ describe('edit button', () => {
actionVariables: { context: [], state: [] },
defaultActionGroupId: 'default',
producer: 'alerting',
authorizedConsumers,
};

expect(
Expand Down Expand Up @@ -719,6 +721,7 @@ describe('edit button', () => {
actionVariables: { context: [], state: [] },
defaultActionGroupId: 'default',
producer: 'alerting',
authorizedConsumers,
};

expect(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@ import { TypeFilter } from './type_filter';
import { ActionTypeFilter } from './action_type_filter';
import { loadAlerts, loadAlertTypes, deleteAlerts } from '../../../lib/alert_api';
import { loadActionTypes } from '../../../lib/action_connector_api';
import {
hasDeleteAlertsCapability,
hasSaveAlertsCapability,
hasExecuteActionsCapability,
} from '../../../lib/capabilities';
import { hasExecuteActionsCapability } from '../../../lib/capabilities';
import { routeToAlertDetails, DEFAULT_SEARCH_PAGE_SIZE } from '../../../constants';
import { DeleteModalConfirmation } from '../../../components/delete_modal_confirmation';
import { EmptyPrompt } from '../../../components/prompts/empty_prompt';
Expand Down

0 comments on commit 3cc2cb5

Please sign in to comment.