Completed
Push — master ( 02ffc1...a5dd29 )
by David
02:35
created
src/Helpers/Field.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,9 +158,9 @@
 block discarded – undo
158 158
         foreach ($fields as $f) {
159 159
             if ($this->fieldHelper->isIdField($f)) {
160 160
                 $display = $this->crudApi->getRelatedDisplay($f);
161
-                $output .= '<td>' . $display . '</td>';
161
+                $output .= '<td>'.$display.'</td>';
162 162
             } else {
163
-                $output .= '<td>' . $instance->$f . '</td>';
163
+                $output .= '<td>'.$instance->$f.'</td>';
164 164
             }
165 165
         }
166 166
         return $output;
Please login to merge, or discard this patch.