Skip to content

Commit a326ac1

Browse files
committed
Changes from node scripts/eslint_all_files --no-cache --fix
1 parent b101b97 commit a326ac1

3 files changed

Lines changed: 5 additions & 8 deletions

File tree

src/platform/packages/shared/kbn-cps-utils/components/project_picker_container.test.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ describe('ProjectPickerContainer', () => {
6666

6767
mockProjectRouting$ = new BehaviorSubject<ProjectRouting | undefined>(undefined);
6868
// Default to EDITABLE access (dashboards app on individual page)
69-
mockProjectPickerAccess$ = new BehaviorSubject<ProjectRoutingAccess>(ProjectRoutingAccess.EDITABLE);
69+
mockProjectPickerAccess$ = new BehaviorSubject<ProjectRoutingAccess>(
70+
ProjectRoutingAccess.EDITABLE
71+
);
7072

7173
mockCPSManager = {
7274
fetchProjects: mockFetchProjects,

src/platform/packages/shared/kbn-cps-utils/index.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@
99

1010
export type { ProjectPickerProps } from './components/project_picker';
1111
export type { ProjectPickerContentProps } from './components/project_picker_content';
12-
export type {
13-
CPSProject,
14-
ProjectTagsResponse,
15-
ICPSManager,
16-
ProjectsData,
17-
} from './types';
12+
export type { CPSProject, ProjectTagsResponse, ICPSManager, ProjectsData } from './types';
1813
export type { ProjectRoutingValue } from './constants';
1914
export { ProjectPicker } from './components/project_picker';
2015
export { ProjectPickerContent } from './components/project_picker_content';

src/platform/plugins/shared/cps/public/services/access_control.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ export const getProjectRoutingAccess = (
109109
}
110110
}
111111
return appConfig.defaultAccess;
112-
};
112+
};

0 commit comments

Comments
 (0)