This commit is contained in:
Sunny Side Up 2024-10-22 12:56:53 +13:00 committed by GitHub
commit 05673e9f36
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);
}