Completed
Pull Request — master (#1350)
by
unknown
02:37
created
src/Form/Tab.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     {
48 48
         $fields = $this->collectFields($content);
49 49
 
50
-        $id = 'form-' . ($this->tabs->count() + 1);
50
+        $id = 'form-'.($this->tabs->count() + 1);
51 51
         //if define tab and row inside of tab ,you cant define row in form or simple field in tab
52 52
         $rows = $this->form->builder()->getRows();
53 53
         $this->form->builder()->setRows([]);
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     public function getTabs()
85 85
     {
86 86
         // If there is no active tab, then active the first.
87
-        if ($this->tabs->filter(function ($tab) {
87
+        if ($this->tabs->filter(function($tab) {
88 88
             return $tab['active'];
89 89
         })->isEmpty()) {
90 90
             $first = $this->tabs->first();
Please login to merge, or discard this patch.