Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Javier committed Jul 14, 2020
2 parents a92ce32 + fd7b581 commit 632d348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RowGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function markup(FormBuilder $formBuilder) : string
// See if there are any values in the old request
$name = $this->name;
$requestVals = old($name);
$requestGroupCloneCount = count($requestVals);
$requestGroupCloneCount = is_countable($requestVals) ? count($requestVals) : 0;

// Decide if we need to loop over multiple times
$rowGroupValueCounts = $formBuilder->getRowGroupValueCount($this->name);
Expand Down

0 comments on commit 632d348

Please sign in to comment.