Skip to content

Commit

Permalink
move search box to left for datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
sfirke committed Aug 30, 2023
1 parent 5528a68 commit edb9a19
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions superset-frontend/src/pages/DatasetList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,13 @@ const DatasetList: FunctionComponent<DatasetListProps> = ({

const filterTypes: Filters = useMemo(
() => [
{
Header: t('Search'),
key: 'search',
id: 'table_name',
input: 'search',
operator: FilterOperator.contains,
},
{
Header: t('Owner'),
key: 'owner',
Expand Down Expand Up @@ -598,13 +605,6 @@ const DatasetList: FunctionComponent<DatasetListProps> = ({
{ label: t('No'), value: false },
],
},
{
Header: t('Search'),
key: 'search',
id: 'table_name',
input: 'search',
operator: FilterOperator.contains,
},
],
[user],
);
Expand Down

0 comments on commit edb9a19

Please sign in to comment.