Skip to content

Commit ef8514d

Browse files
authored
[5.x] Fix filtering group fieldtype null values (#11788)
1 parent de4b0cb commit ef8514d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fieldtypes/Group.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected function configFieldItems(): array
5050

5151
public function process($data)
5252
{
53-
return $this->fields()->addValues($data ?? [])->process()->values()->all();
53+
return $this->fields()->addValues($data ?? [])->process()->values()->filter()->all();
5454
}
5555

5656
public function preProcess($data)

0 commit comments

Comments
 (0)