Skip to content

Commit

Permalink
Fix broken values method
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Dec 3, 2024
1 parent bd343f4 commit 5bad17d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Form/Field/LayoutField.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function fill(mixed $value = null): void

foreach ($layouts as $layoutIndex => $layout) {
if ($this->settings !== null) {
$layouts[$layoutIndex]['attrs'] = $this->attrsForm($layout['attrs'])->values();
$layouts[$layoutIndex]['attrs'] = $this->attrsForm($layout['attrs'])->toFormValues();
}

foreach ($layout['columns'] as $columnIndex => $column) {
Expand Down

0 comments on commit 5bad17d

Please sign in to comment.