Added ability to edit filter and sort chip directly (#2968)

* - Added EditableSortChip
- Fixed EditableFilterChip onRemove not closing

* Added missing script in dependencies

* Linted files

* Finished fixing lint
This commit is contained in:
Lucas Bordeau
2023-12-13 15:24:06 +01:00
committed by GitHub
parent e3e42be723
commit bded46444d
14 changed files with 232 additions and 55 deletions

View File

@ -106,7 +106,7 @@ export const turnFiltersIntoObjectRecordFilters = (
);
}
break;
case 'RELATION':
case 'RELATION': {
try {
JSON.parse(rawUIFilter.value);
} catch (e) {
@ -143,6 +143,7 @@ export const turnFiltersIntoObjectRecordFilters = (
}
}
break;
}
case 'CURRENCY':
switch (rawUIFilter.operand) {
case ViewFilterOperand.GreaterThan: