File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
x-pack/plugins/security_solution/public/management/pages/trusted_apps/store Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55 */
66
77import { ServerApiError } from '../../../../common/types' ;
8- import { RoutingAction } from '../../../../common/store/routing/action' ;
98import { AsyncDataBinding } from '../state/async_data_binding' ;
109import { TrustedAppsListData } from '../state/trusted_apps_list_page_state' ;
1110
@@ -16,4 +15,4 @@ export interface TrustedAppsListDataBindingChanged {
1615 } ;
1716}
1817
19- export type TrustedAppsPageAction = TrustedAppsListDataBindingChanged | RoutingAction ;
18+ export type TrustedAppsPageAction = TrustedAppsListDataBindingChanged ;
Original file line number Diff line number Diff line change @@ -10,17 +10,18 @@ import { matchPath } from 'react-router-dom';
1010import { ImmutableReducer } from '../../../../common/store' ;
1111import { AppLocation , Immutable } from '../../../../../common/endpoint/types' ;
1212import { UserChangedUrl } from '../../../../common/store/routing/action' ;
13+ import { AppAction } from '../../../../common/store/actions' ;
1314import { extractListPaginationParams } from '../../../common/routing' ;
1415import {
1516 MANAGEMENT_ROUTING_TRUSTED_APPS_PATH ,
1617 MANAGEMENT_DEFAULT_PAGE ,
1718 MANAGEMENT_DEFAULT_PAGE_SIZE ,
1819} from '../../../common/constants' ;
19- import { TrustedAppsListDataBindingChanged , TrustedAppsPageAction } from './action' ;
20+ import { TrustedAppsListDataBindingChanged } from './action' ;
2021import { TrustedAppsListPageState } from '../state/trusted_apps_list_page_state' ;
2122
22- type StateReducer = ImmutableReducer < TrustedAppsListPageState , TrustedAppsPageAction > ;
23- type CaseReducer < T extends TrustedAppsPageAction > = (
23+ type StateReducer = ImmutableReducer < TrustedAppsListPageState , AppAction > ;
24+ type CaseReducer < T extends AppAction > = (
2425 state : Immutable < TrustedAppsListPageState > ,
2526 action : Immutable < T >
2627) => Immutable < TrustedAppsListPageState > ;
You can’t perform that action at this time.
0 commit comments