+ {JSON.stringify(props.hit, null, 2)}
+
+ );
+ };
diff --git a/src/plugins/discover/public/context_awareness/profile_providers/common/logs_data_source_profile/profile.ts b/src/plugins/discover/public/context_awareness/profile_providers/common/logs_data_source_profile/profile.ts
index eb7f08b1d44a6..c3a679411789f 100644
--- a/src/plugins/discover/public/context_awareness/profile_providers/common/logs_data_source_profile/profile.ts
+++ b/src/plugins/discover/public/context_awareness/profile_providers/common/logs_data_source_profile/profile.ts
@@ -15,7 +15,7 @@ import {
getRowAdditionalLeadingControls,
} from './accessors';
import { extractIndexPatternFrom } from '../../extract_index_pattern_from';
-import { getRenderAppWrapper } from './accessors/get_cell_renderers';
+import { getRenderAppWrapper, getRenderDocViewerFlyout } from './accessors/get_cell_renderers';
export const createLogsDataSourceProfileProvider = (
services: ProfileProviderServices
@@ -23,6 +23,7 @@ export const createLogsDataSourceProfileProvider = (
profileId: 'logs-data-source-profile',
profile: {
getRenderAppWrapper,
+ getRenderDocViewerFlyout,
getRowIndicatorProvider,
getCellRenderers,
getRowAdditionalLeadingControls,
diff --git a/src/plugins/discover/public/context_awareness/types.ts b/src/plugins/discover/public/context_awareness/types.ts
index 7fe8e468b0df7..634fc26932370 100644
--- a/src/plugins/discover/public/context_awareness/types.ts
+++ b/src/plugins/discover/public/context_awareness/types.ts
@@ -272,5 +272,5 @@ export interface Profile {
* @param props The doc viewer override props
* @returns The custom doc viewer component
*/
- getRenderDocViewerOverride: (props: DiscoverGridFlyoutProps) => ReactElement;
+ getRenderDocViewerFlyout: (props: DiscoverGridFlyoutProps) => ReactElement;
}