File tree Expand file tree Collapse file tree
packages/kbn-unified-data-table/src/components
x-pack/plugins/security_solution/public Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,12 +64,6 @@ export const UnifiedDataTableFooter: FC<PropsWithChildren<UnifiedDataTableFooter
6464 return null ;
6565 }
6666
67- console . log ( {
68- rowCount,
69- sampleSize,
70- MAX_LOADED_GRID_ROWS ,
71- } ) ;
72-
7367 // allow to fetch more records for UnifiedDataTable
7468 if ( onFetchMoreRecords && typeof isLoadingMore === 'boolean' ) {
7569 if ( rowCount <= MAX_LOADED_GRID_ROWS - sampleSize ) {
Original file line number Diff line number Diff line change @@ -94,8 +94,6 @@ export const createStoreFactory = async (
9494 dataViewId : `${ DEFAULT_DATA_VIEW_ID } -${ ( await startPlugins . spaces ?. getActiveSpace ( ) ) ?. id } ` ,
9595 } ) ;
9696
97- console . log ( { sourcererDataViews } ) ;
98-
9997 if ( sourcererDataViews === undefined ) {
10098 throw new Error ( '' ) ;
10199 }
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ export const useInitSourcerer = (
4343 const { addError, addWarning } = useAppToasts ( ) ;
4444
4545 useEffect ( ( ) => {
46- debugger ;
4746 if ( defaultDataView . error != null ) {
4847 addWarning ( {
4948 title : i18n . translate ( 'xpack.securitySolution.sourcerer.permissions.title' , {
You can’t perform that action at this time.
0 commit comments