fix(explore): simple tab content input problem (#17872)
This commit is contained in:
parent
4954d52329
commit
07998fea68
|
|
@ -234,7 +234,9 @@ const AdhocFilterEditPopoverSimpleTabContent: React.FC<Props> = props => {
|
|||
const onInputComparatorChange = (
|
||||
event: React.ChangeEvent<HTMLInputElement>,
|
||||
) => {
|
||||
onComparatorChange(event.target.value);
|
||||
const { value } = event.target;
|
||||
setComparator(value);
|
||||
onComparatorChange(value);
|
||||
};
|
||||
|
||||
const renderSubjectOptionLabel = (option: ColumnType) => (
|
||||
|
|
|
|||
Loading…
Reference in New Issue