This commit is contained in:
Sunny Side Up 2024-10-22 18:46:04 +13:00 committed by GitHub
commit 81e54ffdb3
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);
}