laradocs há 3 anos atrás
pai
commit
0b745a5e75
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/Form/Field/Embeds.php

+ 1 - 1
src/Form/Field/Embeds.php

@@ -278,7 +278,7 @@ class Embeds extends Field
     public function findFieldByName($name)
     {
         return $this->buildEmbeddedForm()->fields()->first(function (Field $field) use ($name) {
-            return $field->column() === $name;
+            return $field->column() == $name;
         });
     }
 }