Skip to content

Commit 413936d

Browse files
committed
Merge branch 'feat-explore-quick-filters-swap' into feat-searchdropdown-consumers
2 parents 35469dc + a68b027 commit 413936d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

openmetadata-ui/src/main/resources/ui/src/components/Explore/ExploreQuickFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ const ExploreQuickFilters: FC<ExploreQuickFiltersProps> = ({
403403
useEffect(() => () => debouncedSearch.cancel(), [debouncedSearch]);
404404

405405
return (
406-
<div className="explore-quick-filters-container tw:inline-flex tw:flex-wrap tw:items-center">
406+
<div className="explore-quick-filters-container tw:flex tw:flex-wrap tw:items-center">
407407
{fields.map((field) => {
408408
const hasNullOption = fieldsWithNullValues.includes(
409409
field.key as EntityFields

openmetadata-ui/src/main/resources/ui/src/components/ExploreV1/ExploreV1.component.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,9 @@ const ExploreV1: React.FC<ExploreProps> = ({
11441144
<div className="explore-page bg-grey" data-testid="explore-page">
11451145
<Card className="p-xs card-padding-0 m-b-box">
11461146
<Row className="tw:mr-2" gutter={[0, 8]}>
1147-
<Col>
1147+
{/* flex-auto + min-w-0 lets the filter toolbar shrink and wrap
1148+
internally instead of pushing the sort controls onto a new row */}
1149+
<Col className="tw:min-w-0" flex="auto">
11481150
<ExploreQuickFilters
11491151
immediateApply
11501152
showSelectedCounts

0 commit comments

Comments
 (0)