mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix space (#15175)
This commit is contained in:
committed by
GitHub
parent
b179863e25
commit
d30f3c8149
@@ -35,7 +35,7 @@ export default function SearchFilter({
|
||||
const [value, setValue] = useState(initialValue || '');
|
||||
const handleSubmit = () => {
|
||||
if (value) {
|
||||
onSubmit(value);
|
||||
onSubmit(value.trim());
|
||||
}
|
||||
};
|
||||
const onClear = () => {
|
||||
|
||||
Reference in New Issue
Block a user