Add employees and address filter on companies table page (#129)

This commit is contained in:
Charles Bochet
2023-05-18 18:15:07 +02:00
committed by GitHub
parent 5286dfd695
commit 20bf89ab1e
4 changed files with 127 additions and 45 deletions

View File

@ -51,8 +51,8 @@ type FilterOperandRelationType<
};
type FilterOperandFieldType<FilteredType extends FilterableFieldsType> = {
label: 'Contains' | 'Does not contain';
id: 'like' | 'not_like';
label: 'Contains' | 'Does not contain' | 'Greater than' | 'Less than';
id: 'like' | 'not_like' | 'greater_than' | 'less_than';
whereTemplate: (value: string) => BoolExpType<FilteredType>;
};