diff --git a/src/components/Table/Filters/index.tsx b/src/components/Table/Filters/index.tsx index c20b4b49..022fdae0 100644 --- a/src/components/Table/Filters/index.tsx +++ b/src/components/Table/Filters/index.tsx @@ -249,35 +249,37 @@ const Filters = () => { -
- - Value - + {query.key && query.operator && ( + + + Value + - - setQuery((query) => ({ - ...query, - value: values[query.key], - })) - } - /> - }> - {query.operator && - createElement(getFieldProp("SideDrawerField", type), { - column: selectedColumn, - control, - docRef: {}, - disabled: false, - handleChange: () => {}, - })} - - + + setQuery((query) => ({ + ...query, + value: values[query.key], + })) + } + /> + }> + {query.operator && + createElement(getFieldProp("SideDrawerField", type), { + column: selectedColumn, + control, + docRef: {}, + disabled: false, + handleChange: () => {}, + })} + + + )}