Skip to content

Commit

Permalink
Increase the height of the indices container in playground
Browse files Browse the repository at this point in the history
  • Loading branch information
saikatsarkar056 committed Mar 3, 2025
1 parent 8099763 commit 9e07076
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ export const SelectIndicesFlyout: React.FC<SelectIndicesFlyout> = ({ onClose })
<EuiSelectable
searchable
height="full"
css={css`
height: calc(100vh - var(--euiFixedHeadersOffset, 0));
`}
searchProps={{
onChange: handleSearchChange,
}}
Expand Down Expand Up @@ -93,9 +96,6 @@ export const SelectIndicesFlyout: React.FC<SelectIndicesFlyout> = ({ onClose })
}}
isLoading={isIndicesLoading}
renderOption={undefined}
css={css`
height: calc(100vh - var(--euiFixedHeadersOffset, 0));
`}
>
{(list, search) => (
<>
Expand Down

0 comments on commit 9e07076

Please sign in to comment.