Merge 5c9c5519f365d56b9c51354728b67a8247158e1b into b02ac10fc8495e429d017664ee8ed5efba38357f

This commit is contained in:
Sunny Side Up 2024-09-30 05:30:34 +13:00 committed by GitHub
commit f823ec42dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,18 @@ trait SearchFilterable
$filterServiceName = "DataListFilter.{$secondArg}";
}
}
if (is_array($value)) {
foreach ($value as $key => $val) {
if ($val === '' || $val === 'null') {
$value[] = null;
}
}
} else {
if ($value === '' || $value === 'null') {
$value = ['', null];
}
}
// Build instance
return Injector::inst()->create($filterServiceName, $fieldName, $value, $modifiers);
}