Skip to content

Commit

Permalink
[Playground] Increase the height of the indices container (#212827)
Browse files Browse the repository at this point in the history
This PR increase the height of the container for indices in the
playground




https://github.com/user-attachments/assets/0fbacb11-ce8e-4566-b07e-b6058de89af0
  • Loading branch information
saikatsarkar056 authored Mar 5, 2025
1 parent 80c142a commit 1e00a04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
} from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n-react';
import { i18n } from '@kbn/i18n';
import { css } from '@emotion/react';
import { EuiSelectableOption } from '@elastic/eui/src/components/selectable/selectable_option';
import { getIndicesWithNoSourceFields } from '../utils/create_query';
import { useIndicesFields } from '../hooks/use_indices_fields';
Expand Down Expand Up @@ -62,6 +63,10 @@ export const SelectIndicesFlyout: React.FC<SelectIndicesFlyout> = ({ onClose })
<EuiSpacer />
<EuiSelectable
searchable
height="full"
css={css`
height: 70vh;
`}
searchProps={{
onChange: handleSearchChange,
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const useQueryIndices = (
query: {
search_query: query,
exact,
size: 50,
size: 100,
},
});

Expand Down

0 comments on commit 1e00a04

Please sign in to comment.