File tree Expand file tree Collapse file tree
openmetadata-ui/src/main/resources/ui/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments