mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix(table): conditionally render search dropdown only when search input is enabled (#35204)
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -580,7 +580,7 @@ export default typedMemo(function DataTable<D extends object>({
|
||||
/>
|
||||
) : null}
|
||||
<Flex wrap align="center" gap="middle">
|
||||
{serverPagination && (
|
||||
{serverPagination && searchInput && (
|
||||
<Space size="small" className="search-select-container">
|
||||
<span className="search-by-label">{t('Search by')}:</span>
|
||||
<SearchSelectDropdown
|
||||
|
||||
Reference in New Issue
Block a user