Skip to content

Commit

Permalink
fix fullscreen max-height issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsonpl committed Dec 6, 2022
1 parent ab89936 commit c208269
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x-pack/plugins/osquery/public/results/results_table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ import { AddToCaseWrapper } from '../cases/add_to_cases';
const DataContext = createContext<ResultEdges>([]);

const StyledEuiDataGrid = styled(EuiDataGrid)`
max-height: 500px;
:not(.euiDataGrid--fullScreen) {
max-height: 500px;
}
`;

export interface ResultsTableComponentProps {
Expand Down

0 comments on commit c208269

Please sign in to comment.