Skip to content

Commit

Permalink
Merge pull request #5272 from parca-dev/selector-height
Browse files Browse the repository at this point in the history
area/ui: fix height for selector's search
  • Loading branch information
yomete authored Nov 6, 2024
2 parents 96dd986 + 4db417d commit 1cc12a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/packages/shared/profile/src/SimpleMatchers/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const CustomSelect: React.FC<CustomSelectProps> = ({
>
{searchable && (
<div className="sticky z-10 top-[-5px] w-auto max-w-full">
<div className={cx('relative h-full', editable ? 'h-full min-h-[50px]' : 'h-[45px]')}>
<div className={cx('relative', editable ? 'h-full min-h-[50px]' : 'h-[45px]')}>
{editable ? (
<textarea
ref={searchInputRef as React.LegacyRef<HTMLTextAreaElement>}
Expand Down

0 comments on commit 1cc12a2

Please sign in to comment.