Skip to content

Commit

Permalink
fix(explore): simple tab content input problem (apache#17872)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenLYZ authored and shcoderAlex committed Feb 7, 2022
1 parent de251ce commit 3e3ec1d
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 3e3ec1d

Please sign in to comment.