mirror of
https://github.com/apache/superset.git
synced 2026-04-17 23:25:05 +00:00
fix(explore): simple tab content input problem (#17872)
This commit is contained in:
@@ -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) => (
|
||||
|
||||
Reference in New Issue
Block a user