Skip to content

Commit

Permalink
bug #2369 [LiveComponent] (Dynamic Form) Do not clear missing values …
Browse files Browse the repository at this point in the history
…on submit
  • Loading branch information
momocode-de committed Nov 20, 2024
1 parent ed31702 commit 6d55c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LiveComponent/src/ComponentWithFormTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private function submitForm(bool $validateAll = true): void
}

$form = $this->getForm();
$form->submit($this->formValues);
$form->submit($this->formValues, false);
$this->shouldAutoSubmitForm = false;

if ($validateAll) {
Expand Down

0 comments on commit 6d55c38

Please sign in to comment.