Skip to content

Commit

Permalink
fix(explore): simple tab content input problem (#17872)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenLYZ authored Jan 3, 2022
1 parent 4954d52 commit 07998fe
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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) => (
Expand Down

0 comments on commit 07998fe

Please sign in to comment.