From fc28e48b423ca7832eae564885fa6883f0ff12e9 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Mon, 12 Dec 2022 14:21:00 -0500 Subject: [PATCH] [8.6] [Osquery] [Fix] Fix osquery results table fullscreen height issue (#147076) (#147381) # Backport This will backport the following commits from `main` to `8.6`: - [[Osquery] [Fix] Fix osquery results table fullscreen height issue (#147076)](https://github.com/elastic/kibana/pull/147076) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Tomasz Ciecierski --- x-pack/plugins/osquery/public/results/results_table.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/osquery/public/results/results_table.tsx b/x-pack/plugins/osquery/public/results/results_table.tsx index 23dca7ea1e019..b7e08dda9a14a 100644 --- a/x-pack/plugins/osquery/public/results/results_table.tsx +++ b/x-pack/plugins/osquery/public/results/results_table.tsx @@ -48,7 +48,9 @@ import { AddToCaseWrapper } from '../cases/add_to_cases'; const DataContext = createContext([]); const StyledEuiDataGrid = styled(EuiDataGrid)` - max-height: 500px; + :not(.euiDataGrid--fullScreen) { + max-height: 500px; + } `; export interface ResultsTableComponentProps {