Skip to content

Commit

Permalink
reintroduce fts
Browse files Browse the repository at this point in the history
  • Loading branch information
slax57 committed Jun 28, 2024
1 parent 809692d commit 247a28f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/demo/src/companies/CompanyListFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const CompanyListFilter = () => {
const { identity } = useGetIdentity();
return (
<Box width="13em" minWidth="13em" order={-1} mr={2} mt={5}>
<FilterLiveSearch hiddenLabel />
<FilterLiveSearch source="fts@fts" hiddenLabel />

<FilterList label="Size" icon={<BusinessIcon />}>
{sizes.map(size => (
Expand Down
1 change: 1 addition & 0 deletions packages/demo/src/contacts/ContactListFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const ContactListFilter = () => {
return (
<Box width="13em" minWidth="13em" order={-1} mr={2} mt={5}>
<FilterLiveSearch
source="fts@fts"
hiddenLabel
sx={{
display: 'block',
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/src/deals/DealList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const DealList = () => {
};

const dealFilters = [
<SearchInput source="name@ilike" alwaysOn />,
<SearchInput source="fts@fts" alwaysOn />,
<OnlyMineInput source="sales_id" alwaysOn />,
<SelectInput source="type" choices={typeChoices} />,
];
Expand Down

0 comments on commit 247a28f

Please sign in to comment.