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:
Ejaaz Khan 2026-03-18 16:19:16 +05:30 committed by GitHub
parent af390e5358
commit 42adced1f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
}