fix: Empty field request sending fix (#38124)
Co-authored-by: Nishant-k-sagar <147799872+Nishant-k-sagar@users.noreply.github.com>
This commit is contained in:
parent
af390e5358
commit
42adced1f4
1 changed files with 4 additions and 1 deletions
|
|
@ -1318,7 +1318,10 @@ class FilterArea {
|
|||
field.set_value(value.replace(/^%+|%+$/g, ""));
|
||||
}
|
||||
|
||||
this.debounced_refresh_list_view();
|
||||
// Only trigger refresh if field has a value
|
||||
if (value) {
|
||||
this.debounced_refresh_list_view();
|
||||
}
|
||||
});
|
||||
}, 100);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue