Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalabbad committed Jan 13, 2025
1 parent 756d480 commit 1cac534
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,12 @@ export const RelationshipInput = React.forwardRef<
</PopoverTrigger>
</Tooltip>

<ComboboxContent align="end" onOpenAutoFocus={() => loadPoolList()}>
<ComboboxList style={{ width: "auto" }}>
<ComboboxContent
align="end"
fitTriggerWidth={false}
onOpenAutoFocus={() => loadPoolList()}
>
<ComboboxList>
{!isPoolListLoading && <ComboboxEmpty>No pools found</ComboboxEmpty>}

{!isPoolListLoading &&
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/src/shared/components/ui/pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const Pagination = (props: tPaginationType) => {
<Combobox>
<ComboboxTrigger data-testid="pagination-size-select">{limit}</ComboboxTrigger>

<ComboboxContent>
<ComboboxContent fitTriggerWidth={false}>
<Command>
<CommandList>
{[10, 20, 50].map((option) => {
Expand Down

0 comments on commit 1cac534

Please sign in to comment.