From ce5cfcac61e42c0457aa6709dd2ab0b314bacd48 Mon Sep 17 00:00:00 2001 From: "johannes.hammersen" Date: Wed, 19 Jun 2024 11:13:54 +0200 Subject: [PATCH] FIX Remove write from SearchableDropdownTrait In the SearchableDropdownTrait::saveInto method, if the field is a has_one relationship, $record->write() was called. FormField and any other instances of saveInto should not call write - that should be called by the form itself. --- src/Forms/SearchableDropdownTrait.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Forms/SearchableDropdownTrait.php b/src/Forms/SearchableDropdownTrait.php index 7d93f04c1..97923f711 100644 --- a/src/Forms/SearchableDropdownTrait.php +++ b/src/Forms/SearchableDropdownTrait.php @@ -397,7 +397,6 @@ trait SearchableDropdownTrait $record->$classNameField = $ids ? $record->ClassName : ''; } } - $record->write(); } else { // has_many / many_many field if (!method_exists($record, 'hasMethod')) {