Merge pull request #21403 from rtdany10/connection-filter

This commit is contained in:
Shariq Ansari 2023-07-04 15:09:22 +05:30 committed by GitHub
commit 211bf073c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -419,7 +419,7 @@ frappe.ui.filter_utils = {
get_selected_value(field, condition) {
if (!field) return;
let val = field.get_value();
let val = field.get_value() || field.value;
if (typeof val === "string") {
val = strip(val);