From f3182af34d21f72f900045801dcc1309a85a07e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ballester?= Date: Thu, 29 Aug 2019 16:32:14 +0200 Subject: [PATCH] Fixed issue #71 --- src/NestedForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NestedForm.php b/src/NestedForm.php index c0458a4..2cdf757 100644 --- a/src/NestedForm.php +++ b/src/NestedForm.php @@ -565,7 +565,7 @@ public function jsonSerialize() 'min' => $this->min, 'max' => $this->isManyRelationsip() ? $this->max : 1, 'displayIf' => isset($this->displayIfCallback) ? call_user_func($this->displayIfCallback) : null - ], + ] ); } }