File tree Expand file tree Collapse file tree
x-pack/plugins/observability_solution/inventory
public/components/entities_grid Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ export function EntitiesGrid({
196196 columnVisibility = { { visibleColumns, setVisibleColumns } }
197197 rowCount = { entities . length }
198198 renderCellValue = { renderCellValue }
199+ gridStyle = { { border : 'horizontal' , header : 'shade' } }
199200 toolbarVisibility = { {
200201 showColumnSelector : false ,
201202 showSortSelector : false ,
Original file line number Diff line number Diff line change 77import { jsonRt } from '@kbn/io-ts-utils' ;
88import { createObservabilityEsClient } from '@kbn/observability-utils/es/client/create_observability_es_client' ;
99import * as t from 'io-ts' ;
10+ import { INVENTORY_APP_ID } from '@kbn/deeplinks-observability/constants' ;
1011import { entityTypeRt } from '../../../common/entities' ;
1112import { createInventoryServerRoute } from '../create_inventory_server_route' ;
1213import { getLatestEntities } from './get_latest_entities' ;
@@ -32,7 +33,7 @@ export const listLatestEntitiesRoute = createInventoryServerRoute({
3233 const inventoryEsClient = createObservabilityEsClient ( {
3334 client : coreContext . elasticsearch . client . asCurrentUser ,
3435 logger,
35- plugin : ' @kbn/inventory -plugin' ,
36+ plugin : ` @kbn/${ INVENTORY_APP_ID } -plugin` ,
3637 } ) ;
3738
3839 const { sortDirection, sortField, entityTypes } = params . query ;
You can’t perform that action at this time.
0 commit comments