Completed
Pull Request — master (#3729)
by
unknown
02:14
created
src/Grid/Displayers/Label.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
             $this->value = $this->value->toArray();
14 14
         }
15 15
 
16
-        return collect((array) $this->value)->map(function ($item) use ($style) {
16
+        return collect((array) $this->value)->map(function($item) use ($style) {
17 17
             if (is_array($style)) {
18 18
                 $style = Arr::get($style, $item, 'success');
19 19
             }
Please login to merge, or discard this patch.
src/Grid/Displayers/Expand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 });
50 50
 EOT;
51 51
 
52
-    if($isExpand) {
52
+    if ($isExpand) {
53 53
         $script .= "$('.grid-expand-{$this->grid->getGridRowName()}').trigger('click');";
54 54
     }
55 55
         Admin::script($script);
Please login to merge, or discard this patch.